Dmitry V. Levin
cb7409c87a
* travis-ci.sh: Split into travis-build.sh, travis-install.sh, and travis-success.sh files. * .travis.yml (before_install, after_success, git): New mappings. (script): Change to travis-build.sh. (addons, install): Remove. (env): Remove matrix. (matrix): Replace exclude list with include list.
42 lines
614 B
YAML
42 lines
614 B
YAML
language: c
|
|
|
|
dist: trusty
|
|
|
|
before_install: ./travis-install.sh
|
|
|
|
script: ./travis-build.sh
|
|
|
|
after_success: ./travis-success.sh
|
|
|
|
sudo: required
|
|
|
|
git:
|
|
depth: 2147483647
|
|
|
|
env:
|
|
global:
|
|
- SLEEP_A_BIT="sleep 0.2"
|
|
- VERBOSE="1"
|
|
|
|
matrix:
|
|
include:
|
|
- compiler: gcc
|
|
env:
|
|
- TARGET=x86_64
|
|
- COVERAGE=true
|
|
- compiler: gcc
|
|
env:
|
|
- TARGET=x32
|
|
- compiler: gcc
|
|
env:
|
|
- TARGET=x86
|
|
- compiler: clang-3.6
|
|
env:
|
|
- TARGET=x86_64
|
|
- compiler: musl-gcc
|
|
env:
|
|
- TARGET=x86_64
|
|
- compiler: clang-3.6
|
|
env:
|
|
- TARGET=x86
|