summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: f5a2460476a1f0dbf76ccf524f05cef94f52aee7 (plain)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
image: "ubuntu:18.04"

before_script:
  - ci/install-dependencies.sh

variables:
  GIT_DEPTH: "2147483647"
  SLEEP_A_BIT: "sleep 0.2"
  VERBOSE: "1"

gcc-x86_64-libdw-mainline:
  stage: test
  script: ci/run-build-and-tests.sh
  variables:
    CC: "gcc"
    TARGET: "x86_64"
    STACKTRACE: "libdw"
    KHEADERS: "torvalds/linux"

gcc-x86_64-libdw:
  stage: test
  script: ci/run-build-and-tests.sh
  variables:
    CC: "gcc"
    TARGET: "x86_64"
    STACKTRACE: "libdw"

gcc-x86_64-libunwind:
  stage: test
  script: ci/run-build-and-tests.sh
  variables:
    CC: "gcc"
    TARGET: "x86_64"
    STACKTRACE: "libunwind"

gcc-x86_64-nounwind:
  stage: test
  script: ci/run-build-and-tests.sh
  variables:
    CC: "gcc"
    TARGET: "x86_64"
    STACKTRACE: "no"

gcc-x86-nounwind:
  stage: test
  script: ci/run-build-and-tests.sh
  variables:
    CC: "gcc"
    TARGET: "x86"
    STACKTRACE: "no"

clang-x86_64-libdw:
  stage: test
  script: ci/run-build-and-tests.sh
  variables:
    CC: "clang"
    TARGET: "x86_64"
    STACKTRACE: "libdw"

clang-x86_64-libunwind:
  stage: test
  script: ci/run-build-and-tests.sh
  variables:
    CC: "clang"
    TARGET: "x86_64"
    STACKTRACE: "libunwind"

clang-x86_64-nounwind:
  stage: test
  script: ci/run-build-and-tests.sh
  variables:
    CC: "clang"
    TARGET: "x86_64"
    STACKTRACE: "no"

clang-x86-nounwind:
  stage: test
  script: ci/run-build-and-tests.sh
  variables:
    CC: "clang"
    TARGET: "x86"
    STACKTRACE: "no"