We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef49289 commit 7f24459Copy full SHA for 7f24459
1 file changed
.github/workflows/ci-build.yml
@@ -0,0 +1,24 @@
1
+name: compile & stash
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - 'development'
7
+ - 'devel/*'
8
9
+env:
10
+ BUILD_TYPE: Release
11
12
+jobs:
13
+ build:
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - name: Get the source
18
+ uses: actions/checkout@v4
19
20
+ - name: Run cmake
21
+ run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
22
23
+ - name: Build
24
+ run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
0 commit comments