secp256k1/.travis.yml

110 lines
3.7 KiB
YAML
Raw Normal View History

2014-11-13 22:50:10 +00:00
language: c
2020-05-02 19:06:04 +00:00
os:
- linux
- osx
dist: bionic
2020-05-02 19:06:04 +00:00
# Valgrind currently supports upto macOS 10.13, the latest xcode of that version is 10.1
osx_image: xcode10.1
addons:
apt:
packages:
- libgmp-dev
- valgrind
2020-02-12 10:20:38 +00:00
- libtool-bin
2014-11-13 22:50:10 +00:00
compiler:
- clang
- gcc
env:
global:
2020-09-26 03:06:36 +00:00
- WIDEMUL=auto BIGNUM=auto STATICPRECOMPUTATION=yes ECMULTGENPRECISION=auto ASM=no BUILD=check WITH_VALGRIND=yes RUN_VALGRIND=no EXTRAFLAGS= HOST= ECDH=no RECOVERY=no SCHNORRSIG=no EXPERIMENTAL=no CTIMETEST=yes BENCH=yes ITERS=2
matrix:
- WIDEMUL=int64 RECOVERY=yes
- WIDEMUL=int64 ECDH=yes EXPERIMENTAL=yes SCHNORRSIG=yes
- WIDEMUL=int128
- WIDEMUL=int128 RECOVERY=yes EXPERIMENTAL=yes SCHNORRSIG=yes
2020-09-26 03:06:36 +00:00
- WIDEMUL=int128 ECDH=yes EXPERIMENTAL=yes SCHNORRSIG=yes
- WIDEMUL=int128 ASM=x86_64
2014-12-12 15:20:47 +00:00
- BIGNUM=no
2020-09-26 03:06:36 +00:00
- BIGNUM=no RECOVERY=yes EXPERIMENTAL=yes SCHNORRSIG=yes
- BIGNUM=no STATICPRECOMPUTATION=no
- BUILD=distcheck WITH_VALGRIND=no CTIMETEST=no BENCH=no
- CPPFLAGS=-DDETERMINISTIC
- CFLAGS=-O0 CTIMETEST=no
- CFLAGS="-fsanitize=undefined -fno-omit-frame-pointer" LDFLAGS="-fsanitize=undefined -fno-omit-frame-pointer" UBSAN_OPTIONS="print_stacktrace=1:halt_on_error=1" BIGNUM=no ASM=x86_64 ECDH=yes RECOVERY=yes EXPERIMENTAL=yes SCHNORRSIG=yes CTIMETEST=no
- ECMULTGENPRECISION=2
- ECMULTGENPRECISION=8
- RUN_VALGRIND=yes BIGNUM=no ASM=x86_64 ECDH=yes RECOVERY=yes EXPERIMENTAL=yes SCHNORRSIG=yes EXTRAFLAGS="--disable-openssl-tests" BUILD=
matrix:
fast_finish: true
include:
- compiler: clang
2020-05-02 19:06:04 +00:00
os: linux
2020-09-26 03:06:36 +00:00
env: HOST=i686-linux-gnu
addons:
apt:
packages:
- gcc-multilib
- libgmp-dev:i386
2020-02-12 10:20:38 +00:00
- valgrind
- libtool-bin
- libc6-dbg:i386
- compiler: clang
env: HOST=i686-linux-gnu
2020-05-02 19:06:04 +00:00
os: linux
addons:
apt:
packages:
- gcc-multilib
2020-02-12 10:20:38 +00:00
- valgrind
- libtool-bin
- libc6-dbg:i386
- compiler: gcc
2020-09-26 03:06:36 +00:00
env: HOST=i686-linux-gnu
2020-05-02 19:06:04 +00:00
os: linux
addons:
apt:
packages:
- gcc-multilib
2020-02-12 10:20:38 +00:00
- valgrind
- libtool-bin
- libc6-dbg:i386
- compiler: gcc
2020-05-02 19:06:04 +00:00
os: linux
env: HOST=i686-linux-gnu
addons:
apt:
packages:
- gcc-multilib
- libgmp-dev:i386
2020-02-12 10:20:38 +00:00
- valgrind
- libtool-bin
- libc6-dbg:i386
2020-07-29 00:41:07 +00:00
# S390x build (big endian system)
- compiler: gcc
env: HOST=s390x-unknown-linux-gnu ECDH=yes RECOVERY=yes EXPERIMENTAL=yes SCHNORRSIG=yes CTIMETEST=
2020-07-29 00:41:07 +00:00
arch: s390x
2020-05-02 19:06:04 +00:00
# We use this to install macOS dependencies instead of the built in `homebrew` plugin,
# because in xcode earlier than 11 they have a bug requiring updating the system which overall takes ~8 minutes.
# https://travis-ci.community/t/macos-build-fails-because-of-homebrew-bundle-unknown-command/7296
before_install:
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then HOMEBREW_NO_AUTO_UPDATE=1 brew install gmp valgrind gcc@9; fi
before_script: ./autogen.sh
# travis auto terminates jobs that go for 10 minutes without printing to stdout, but travis_wait doesn't work well with forking programs like valgrind (https://docs.travis-ci.com/user/common-build-problems/#build-times-out-because-no-output-was-received https://github.com/bitcoin-core/secp256k1/pull/750#issuecomment-623476860)
script:
- function keep_alive() { while true; do echo -en "\a"; sleep 60; done }
- keep_alive &
- ./contrib/travis.sh
- kill %keep_alive
after_script:
- cat ./tests.log
- cat ./exhaustive_tests.log
2020-02-12 10:20:38 +00:00
- cat ./valgrind_ctime_test.log
- cat ./bench.log
2020-05-02 19:06:04 +00:00
- $CC --version
- valgrind --version