74 lines
1.3 KiB
YAML
74 lines
1.3 KiB
YAML
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:
|
|
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"
|