Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
cache:
paths:
- install/boost
- install/petsc
before_script:
- tools/install_boost.sh
- tools/install_petsc.sh
build:9-debug-gcc:
stage: build
image: duneci/base:9
script:
- tools/build_amdis.sh Debug
only:
- master
build:9-release-gcc:
stage: build
image: duneci/base:9
script:
- tools/build_amdis.sh Release
only:
- master
build:9-parallel-debug-gcc:
stage: build
image: duneci/base:9
script:
- tools/build_parallel_amdis.sh Debug
only:
- master
build:9-parallel-release-gcc:
stage: build
image: duneci/base:9
script:
- tools/build_parallel_amdis.sh Release
only:
- master