Skip to content

Commit f711a22

Browse files
authored
Merge pull request #575 from reinhold-willcox/compas_compilation_test
Compas compilation test
2 parents cc24e06 + 51229d4 commit f711a22

File tree

1 file changed

+21
-0
lines changed

1 file changed

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

Comments
 (0)