We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cc24e06 + 51229d4 commit f711a22Copy full SHA for f711a22
.github/workflows/compilation-tests-ci.yml
@@ -0,0 +1,21 @@
1
+name: CI Test Compilation of various COMPAS components
2
+
3
+on:
4
+ pull_request:
5
+ branches: [ dev ]
6
+ #push: # testing
7
8
+jobs:
9
+ compas:
10
+ name: Build Docker image and push to DockerHub
11
+ runs-on: ubuntu-18.04
12
+ steps:
13
+ - uses: actions/checkout@v2
14
15
+ - name: Install dependencies
16
+ run: sudo apt install g++ libboost-all-dev libgsl-dev libhdf5-serial-dev
17
18
+ - name: Build Compas
19
+ run: cd src && make -j $(nproc) -f Makefile
20
21
+ # TODO: add latex and postprocessing python scripts
0 commit comments