mirror of
https://github.com/Squareville/TestEventServer.git
synced 2026-05-03 19:30:04 -05:00
35 lines
655 B
YAML
35 lines
655 B
YAML
name: Cmake CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
build-and-test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
- name: cmake
|
|
uses: lukka/run-cmake@v10
|
|
with:
|
|
configurePreset: 'default'
|
|
buildPreset: 'default'
|
|
testPreset: 'default'
|
|
- name: artifacts
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: linux-build
|
|
path: |
|
|
build
|
|
!build/CMakeCache.txt
|
|
!build/build.ninja
|
|
!build/_deps
|
|
!build/cmake_install.cmake
|
|
!build/*.a
|