]> granicus.if.org Git - strace/blob - .gitlab-ci.yml
tests: fix format warnings on x32
[strace] / .gitlab-ci.yml
1 image: "ubuntu:18.04"
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-mainline:
12   stage: test
13   script: ci/run-build-and-tests.sh
14   variables:
15     CC: "gcc"
16     TARGET: "x86_64"
17     STACKTRACE: "libdw"
18     KHEADERS: "torvalds/linux"
19
20 gcc-x86_64-libdw:
21   stage: test
22   script: ci/run-build-and-tests.sh
23   variables:
24     CC: "gcc"
25     TARGET: "x86_64"
26     STACKTRACE: "libdw"
27
28 gcc-x86_64-libunwind:
29   stage: test
30   script: ci/run-build-and-tests.sh
31   variables:
32     CC: "gcc"
33     TARGET: "x86_64"
34     STACKTRACE: "libunwind"
35
36 gcc-x86_64-nounwind:
37   stage: test
38   script: ci/run-build-and-tests.sh
39   variables:
40     CC: "gcc"
41     TARGET: "x86_64"
42     STACKTRACE: "no"
43
44 gcc-x86-nounwind:
45   stage: test
46   script: ci/run-build-and-tests.sh
47   variables:
48     CC: "gcc"
49     TARGET: "x86"
50     STACKTRACE: "no"
51
52 clang-x86_64-libdw:
53   stage: test
54   script: ci/run-build-and-tests.sh
55   variables:
56     CC: "clang"
57     TARGET: "x86_64"
58     STACKTRACE: "libdw"
59
60 clang-x86_64-libunwind:
61   stage: test
62   script: ci/run-build-and-tests.sh
63   variables:
64     CC: "clang"
65     TARGET: "x86_64"
66     STACKTRACE: "libunwind"
67
68 clang-x86_64-nounwind:
69   stage: test
70   script: ci/run-build-and-tests.sh
71   variables:
72     CC: "clang"
73     TARGET: "x86_64"
74     STACKTRACE: "no"
75
76 clang-x86-nounwind:
77   stage: test
78   script: ci/run-build-and-tests.sh
79   variables:
80     CC: "clang"
81     TARGET: "x86"
82     STACKTRACE: "no"