Skip to content

Commit 69eea62

Browse files
committed
[CI] configure with / without submodules
1 parent 5d496eb commit 69eea62

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: JRL-cmakemodules
2+
on: [push,pull_request]
3+
4+
jobs:
5+
with-submodules:
6+
name: Check configuration with git submodules
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
with:
11+
submodules: true
12+
- run: sudo apt install libboost-all-dev libeigen3-dev python3-numpy
13+
- run: cmake .
14+
15+
16+
without-submodules:
17+
name: Check configuration without git submodules
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@v2
21+
with:
22+
submodules: false
23+
- run: sudo apt install libboost-all-dev libeigen3-dev python3-numpy
24+
- run: cmake .

0 commit comments

Comments
 (0)