Skip to content

Commit 7f24459

Browse files
committed
barebones ci file
1 parent ef49289 commit 7f24459

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/ci-build.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)