]> granicus.if.org Git - strace/blob - .gitlab-ci.yml
mpers: implement gawk 3 support
[strace] / .gitlab-ci.yml
1 image: "ubuntu:17.10"
2
3 before_script:
4   - ./travis-install.sh
5
6 variables:
7   GIT_DEPTH: "2147483647"
8   SLEEP_A_BIT: "sleep 0.2"
9   VERBOSE: "1"
10
11 gcc-x86_64:
12   stage: test
13   script: ./travis-build.sh
14   variables:
15     CC: "gcc"
16     TARGET: "x86_64"
17
18 gcc-x86:
19   stage: test
20   script: ./travis-build.sh
21   variables:
22     CC: "gcc"
23     TARGET: "x86"
24
25 clang-x86_64:
26   stage: test
27   script: ./travis-build.sh
28   variables:
29     CC: "clang"
30     TARGET: "x86_64"
31
32 clang-x86:
33   stage: test
34   script: ./travis-build.sh
35   variables:
36     CC: "clang"
37     TARGET: "x86"