File tree 2 files changed +33
-2
lines changed
2 files changed +33
-2
lines changed Original file line number Diff line number Diff line change
1
+ version : 2.1
2
+
3
+ machine : true
4
+
5
+ jobs :
6
+ build-ubuntu :
7
+ docker :
8
+ - image : ghcr.io/romange/ubuntu-dev:22
9
+ steps :
10
+ - checkout
11
+ - run :
12
+ name : Set up environment
13
+ environment :
14
+ BUILD_TYPE : Debug
15
+ command : |
16
+ git submodule update --init --recursive
17
+ cmake -B build -DCMAKE_BUILD_TYPE=${BUILD_TYPE} -GNinja -DCMAKE_CXX_COMPILER_LAUNCHER=ccache
18
+ - run :
19
+ name : Build & Test
20
+ command : |
21
+ cd build && pwd
22
+ ninja -j4 src/all
23
+ ctest -V -L DFLY
24
+
25
+
26
+
27
+ # Orchestrate our job run sequence
28
+ workflows :
29
+ build_and_test :
30
+ jobs :
31
+ - build-ubuntu
Original file line number Diff line number Diff line change 1
1
name : ci-tests
2
2
3
3
on :
4
- push :
5
- # branches: [ main ]
4
+ # push:
5
+ # branches: [ main ]
6
6
pull_request :
7
7
branches : [ main ]
8
8
workflow_dispatch :
You can’t perform that action at this time.
0 commit comments