Dmitry V. Levin
8c00b612e5
* travis-build.sh: Rename to ci/run-build-and-tests.sh, all callers updated. * travis-install.sh: Rename to ci/install-dependencies.sh, all callers updated.
38 lines
589 B
YAML
38 lines
589 B
YAML
image: "ubuntu:17.10"
|
|
|
|
before_script:
|
|
- ci/install-dependencies.sh
|
|
|
|
variables:
|
|
GIT_DEPTH: "2147483647"
|
|
SLEEP_A_BIT: "sleep 0.2"
|
|
VERBOSE: "1"
|
|
|
|
gcc-x86_64:
|
|
stage: test
|
|
script: ci/run-build-and-tests.sh
|
|
variables:
|
|
CC: "gcc"
|
|
TARGET: "x86_64"
|
|
|
|
gcc-x86:
|
|
stage: test
|
|
script: ci/run-build-and-tests.sh
|
|
variables:
|
|
CC: "gcc"
|
|
TARGET: "x86"
|
|
|
|
clang-x86_64:
|
|
stage: test
|
|
script: ci/run-build-and-tests.sh
|
|
variables:
|
|
CC: "clang"
|
|
TARGET: "x86_64"
|
|
|
|
clang-x86:
|
|
stage: test
|
|
script: ci/run-build-and-tests.sh
|
|
variables:
|
|
CC: "clang"
|
|
TARGET: "x86"
|