]> granicus.if.org Git - strace/blob - .gitlab-ci.yml
tests: move F_OFD_SETLK* checks from fcntl64.c to fcntl-common.c
[strace] / .gitlab-ci.yml
1 image: "ubuntu:17.10"
2
3 before_script:
4   - ci/install-dependencies.sh
5
6 variables:
7   GIT_DEPTH: "2147483647"
8   SLEEP_A_BIT: "sleep 0.2"
9   VERBOSE: "1"
10
11 gcc-x86_64-libdw:
12   stage: test
13   script: ci/run-build-and-tests.sh
14   variables:
15     CC: "gcc"
16     TARGET: "x86_64"
17     STACKTRACE: "libdw"
18
19 gcc-x86_64-libunwind:
20   stage: test
21   script: ci/run-build-and-tests.sh
22   variables:
23     CC: "gcc"
24     TARGET: "x86_64"
25     STACKTRACE: "libunwind"
26
27 gcc-x86_64-nounwind:
28   stage: test
29   script: ci/run-build-and-tests.sh
30   variables:
31     CC: "gcc"
32     TARGET: "x86_64"
33     STACKTRACE: "no"
34
35 gcc-x86-nounwind:
36   stage: test
37   script: ci/run-build-and-tests.sh
38   variables:
39     CC: "gcc"
40     TARGET: "x86"
41     STACKTRACE: "no"
42
43 clang-x86_64-libdw:
44   stage: test
45   script: ci/run-build-and-tests.sh
46   variables:
47     CC: "clang"
48     TARGET: "x86_64"
49     STACKTRACE: "libdw"
50
51 clang-x86_64-libunwind:
52   stage: test
53   script: ci/run-build-and-tests.sh
54   variables:
55     CC: "clang"
56     TARGET: "x86_64"
57     STACKTRACE: "libunwind"
58
59 clang-x86_64-nounwind:
60   stage: test
61   script: ci/run-build-and-tests.sh
62   variables:
63     CC: "clang"
64     TARGET: "x86_64"
65     STACKTRACE: "no"
66
67 clang-x86-nounwind:
68   stage: test
69   script: ci/run-build-and-tests.sh
70   variables:
71     CC: "clang"
72     TARGET: "x86"
73     STACKTRACE: "no"