strace/.travis.yml
Dmitry V. Levin 2607b4e48a .travis.yml: raise sleep delay
Previous sleep delay value seems to be not enough nowadays.

.travis.yml (SLEEP_A_BIT): Raise sleep delay.
2016-04-26 16:46:20 +00:00

40 lines
503 B
YAML

language: c
dist: trusty
script: ./travis-ci.sh
sudo: required
compiler:
- gcc
- clang-3.6
- musl-gcc
addons:
apt:
packages:
- gcc-multilib
- lcov
install:
- pip install --user codecov
env:
global:
- SLEEP_A_BIT="sleep 0.2"
- VERBOSE="1"
matrix:
- TARGET=x86_64
- TARGET=x32
- TARGET=x86
matrix:
exclude:
- compiler: clang-3.6
env: TARGET=x32
- compiler: musl-gcc
env: TARGET=x32
- compiler: musl-gcc
env: TARGET=x86