forked from sosy-lab/sv-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
67 lines (58 loc) · 1.63 KB
/
.gitlab-ci.yml
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
stages:
- checks
sanity-checks:
stage: checks
image: registry.gitlab.com/sosy-lab/software/sv-benchmarks/ci/sanity-checks:latest
script: "c/check.py"
.compile-check: &compile-check
stage: checks
script:
- "${CC} -v --version"
- "cd c"
- "make -j2"
.compile-check-juliet: &compile-check-juliet
stage: checks
script:
- "${CC} -v --version"
- "cd c/Juliet_Test"
- "make -j2"
compile-clang:3.9:
<<: *compile-check
image: registry.gitlab.com/sosy-lab/software/sv-benchmarks/ci/clang:3.9
variables:
CC: clang-3.9
compile-gcc:5:
<<: *compile-check
image: registry.gitlab.com/sosy-lab/software/sv-benchmarks/ci/gcc:5
variables:
CC: gcc-5
compile-clang:3.9-juliet:
<<: *compile-check-juliet
image: registry.gitlab.com/sosy-lab/software/sv-benchmarks/ci/clang:3.9
variables:
CC: clang-3.9
compile-gcc:5-juliet:
<<: *compile-check-juliet
image: registry.gitlab.com/sosy-lab/software/sv-benchmarks/ci/gcc:5
variables:
CC: gcc-5
preprocessing-consistency:
stage: checks
image: registry.gitlab.com/sosy-lab/software/sv-benchmarks/ci/preprocessing-consistency:latest
script:
- "goto-diff --version"
- "cd c"
- "./compare.py --keep-going --skip-large"
java:
stage: checks
image: registry.gitlab.com/sosy-lab/software/sv-benchmarks/ci/java:latest
script:
# unset variables to not leak their content through result files
- "unset $(compgen -v CI) $(compgen -v GIT)"
- "java/check-compile.sh"
artifacts:
paths:
- "java/results/*logfiles*"
- "java/results/*.results.Werror.xml*"
- "java/results/*.html"
when: always