Merging upstream version 0.7.1 (Closes: #991419).
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
05c588e9d7
commit
9e09e0ef69
99 changed files with 6727 additions and 943 deletions
39
.travis.yml
Normal file
39
.travis.yml
Normal file
|
@ -0,0 +1,39 @@
|
|||
# sudo required as tests set cpu affinity
|
||||
sudo: false
|
||||
|
||||
os:
|
||||
- linux
|
||||
- linux-ppc64le
|
||||
- osx
|
||||
|
||||
language:
|
||||
- c
|
||||
|
||||
compiler:
|
||||
- gcc
|
||||
- clang
|
||||
|
||||
matrix:
|
||||
exclude:
|
||||
- os: osx
|
||||
compiler: gcc
|
||||
addons:
|
||||
apt:
|
||||
sources:
|
||||
- ubuntu-toolchain-r-test
|
||||
packages:
|
||||
- gcc-8
|
||||
- clang-6.0
|
||||
|
||||
script:
|
||||
- >
|
||||
if [[ $TRAVIS_OS_NAME == linux ]]; then
|
||||
case "$CC" in
|
||||
gcc) export CC=gcc-8 ;;
|
||||
clang) export CC=clang-6.0 ;;
|
||||
esac
|
||||
fi
|
||||
- ${CC} --version
|
||||
- export CFLAGS="-DITERATE=400 -DPAIRS_S=100 -DITERATIONS=24"
|
||||
- ./tools/ci-build.sh --cores=4
|
||||
- make check
|
Loading…
Add table
Add a link
Reference in a new issue