2017-03-07 20:08:15 +00:00
|
|
|
# Medium Tests: Run on all commits/PRs to dev branch
|
|
|
|
|
2015-01-24 00:58:16 +00:00
|
|
|
language: c
|
2017-02-22 08:21:04 +00:00
|
|
|
dist: trusty
|
2018-11-28 06:06:18 +00:00
|
|
|
|
2017-03-07 20:08:15 +00:00
|
|
|
git:
|
|
|
|
depth: 1
|
2017-01-02 23:25:01 +00:00
|
|
|
|
2017-03-07 20:08:15 +00:00
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- dev
|
|
|
|
- master
|
2018-06-27 23:57:28 +00:00
|
|
|
- travisTest
|
2016-01-11 15:39:42 +00:00
|
|
|
|
2018-12-13 18:38:06 +00:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
update: true
|
|
|
|
|
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- FUZZERTEST=-T2mn
|
|
|
|
ZSTREAM_TESTTIME=-T2mn
|
|
|
|
DECODECORPUS_TESTTIME=-T1mn
|
|
|
|
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
fast_finish: true
|
|
|
|
include:
|
|
|
|
- name: Trusty (Test All)
|
|
|
|
script:
|
|
|
|
- make test
|
|
|
|
|
2018-12-24 12:15:41 +00:00
|
|
|
- name: gcc-6 + gcc-7 compilation
|
2018-12-13 18:38:06 +00:00
|
|
|
script:
|
2018-12-24 12:15:41 +00:00
|
|
|
- make gcc6install gcc7install
|
2018-12-13 18:38:06 +00:00
|
|
|
- CC=gcc-6 CFLAGS=-Werror make -j all
|
|
|
|
- make clean
|
2018-12-24 12:15:41 +00:00
|
|
|
- CC=gcc-7 CFLAGS=-Werror make -j all
|
2018-12-24 10:56:21 +00:00
|
|
|
|
2018-12-24 12:15:41 +00:00
|
|
|
- name: gcc-8 + ASan + UBSan + Test Zstd
|
2018-12-13 18:38:06 +00:00
|
|
|
script:
|
2018-12-24 12:15:41 +00:00
|
|
|
- make gcc8install
|
|
|
|
- CC=gcc-8 CFLAGS="-Werror" make -j all
|
2018-12-13 18:38:06 +00:00
|
|
|
- make clean
|
2018-12-24 12:15:41 +00:00
|
|
|
- CC=gcc-8 make -j uasan-test-zstd </dev/null # test when stdin is not a tty
|
2018-12-24 10:56:21 +00:00
|
|
|
|
2018-12-24 12:15:41 +00:00
|
|
|
- name: gcc-6 + ASan + UBSan + Test Zstd, 32bit mode
|
2018-12-13 18:38:06 +00:00
|
|
|
script:
|
2018-12-24 12:15:41 +00:00
|
|
|
- make gcc6install libc6install
|
|
|
|
- CC=gcc-6 CFLAGS="-Werror -m32" make -j all32
|
2018-12-13 18:38:06 +00:00
|
|
|
- make clean
|
2018-12-24 12:15:41 +00:00
|
|
|
- CC=gcc-6 make -j uasan-test-zstd32 # note : can complain about pointer overflow
|
2018-12-24 10:56:21 +00:00
|
|
|
|
2018-12-13 18:38:06 +00:00
|
|
|
- name: Trusty (clang-3.8 + MSan + Test Zstd)
|
|
|
|
script:
|
|
|
|
- make clang38install
|
|
|
|
- CC=clang-3.8 make clean msan-test-zstd
|
|
|
|
|
2018-12-05 22:04:57 +00:00
|
|
|
- name: Trusty (Minimal Decompressor Macros)
|
|
|
|
script:
|
|
|
|
- make clean
|
2018-12-24 10:56:21 +00:00
|
|
|
- CFLAGS=-Werror make -j all MOREFLAGS="-Werror -DHUF_FORCE_DECOMPRESS_X1 -DZSTD_FORCE_DECOMPRESS_SEQUENCES_SHORT"
|
|
|
|
- make clean
|
|
|
|
- make -j check MOREFLAGS="-Werror -DHUF_FORCE_DECOMPRESS_X1 -DZSTD_FORCE_DECOMPRESS_SEQUENCES_SHORT"
|
2018-12-05 22:04:57 +00:00
|
|
|
- make clean
|
2018-12-24 10:56:21 +00:00
|
|
|
- CFLAGS=-Werror make -j all MOREFLAGS="-Werror -DHUF_FORCE_DECOMPRESS_X2 -DZSTD_FORCE_DECOMPRESS_SEQUENCES_LONG"
|
2018-12-05 22:04:57 +00:00
|
|
|
- make clean
|
2018-12-24 10:56:21 +00:00
|
|
|
- make -j check MOREFLAGS="-Werror -DHUF_FORCE_DECOMPRESS_X2 -DZSTD_FORCE_DECOMPRESS_SEQUENCES_LONG"
|
|
|
|
- make clean
|
|
|
|
- CFLAGS=-Werror make -j all MOREFLAGS="-Werror -DZSTD_NO_INLINE -DZSTD_STRIP_ERROR_STRINGS"
|
|
|
|
- make clean
|
|
|
|
- make -j check MOREFLAGS="-Werror -DZSTD_NO_INLINE -DZSTD_STRIP_ERROR_STRINGS"
|
2018-12-05 22:04:57 +00:00
|
|
|
|
2018-12-13 18:38:06 +00:00
|
|
|
- name: Trusty (CMake)
|
|
|
|
script:
|
|
|
|
- make cmakebuild
|
|
|
|
|
|
|
|
- name: Trusty (Static Analyze)
|
|
|
|
script:
|
|
|
|
- make staticAnalyze
|
|
|
|
|
2018-12-24 12:15:41 +00:00
|
|
|
- name: Trusty (gcc-8 + ASan + UBSan + Fuzz Test)
|
2018-12-13 18:38:06 +00:00
|
|
|
script:
|
2018-12-24 12:15:41 +00:00
|
|
|
- make gcc8install
|
|
|
|
- CC=gcc-8 make clean uasan-fuzztest
|
2018-12-24 10:56:21 +00:00
|
|
|
|
2018-12-13 18:38:06 +00:00
|
|
|
- name: Trusty (gcc-6 + ASan + UBSan + Fuzz Test 32bit)
|
|
|
|
script:
|
|
|
|
- make gcc6install libc6install
|
2018-12-24 12:15:41 +00:00
|
|
|
- CC=gcc-6 CFLAGS="-O2 -m32" make uasan-fuzztest # can complain about pointer overflow
|
2018-12-24 10:56:21 +00:00
|
|
|
|
2018-12-13 18:38:06 +00:00
|
|
|
- name: Trusty (clang-3.8 + MSan + Fuzz Test)
|
|
|
|
script:
|
|
|
|
- make clang38install
|
|
|
|
- CC=clang-3.8 make clean msan-fuzztest
|
2018-12-24 10:56:21 +00:00
|
|
|
|
2018-12-13 18:38:06 +00:00
|
|
|
- name: Trusty (ASan + UBSan + MSan + Regression Test)
|
|
|
|
script:
|
|
|
|
- make -j uasanregressiontest
|
|
|
|
- make clean
|
|
|
|
- make -j msanregressiontest
|
|
|
|
|
|
|
|
- name: Trusty (Valgrind + Fuzz Test Stack Mode)
|
|
|
|
script:
|
|
|
|
- make valgrindinstall
|
|
|
|
- make -C tests clean valgrindTest
|
|
|
|
- make clean
|
|
|
|
- make -C tests test-fuzzer-stackmode
|
|
|
|
|
|
|
|
- name: Trusty (ARM + Fuzz Test)
|
|
|
|
script:
|
|
|
|
- make arminstall
|
|
|
|
- make armfuzz
|
2018-12-21 23:08:48 +00:00
|
|
|
|
|
|
|
- name: Xenial (AARCH64 + Fuzz Test)
|
|
|
|
dist: xenial
|
2018-12-13 18:38:06 +00:00
|
|
|
script:
|
|
|
|
- make arminstall
|
|
|
|
- make aarch64fuzz
|
2018-12-21 23:08:48 +00:00
|
|
|
|
2018-12-13 18:38:06 +00:00
|
|
|
- name: Trusty (PPC + Fuzz Test)
|
|
|
|
script:
|
|
|
|
- make ppcinstall
|
|
|
|
- make ppcfuzz
|
2018-12-21 23:08:48 +00:00
|
|
|
|
2018-12-24 11:31:40 +00:00
|
|
|
# check release number
|
2018-12-13 18:38:06 +00:00
|
|
|
- name: Tag-Specific Test
|
|
|
|
if: tag =~ ^v[0-9]\.[0-9]
|
|
|
|
script:
|
|
|
|
- make -C tests checkTag
|
|
|
|
- tests/checkTag "$TRAVIS_BRANCH"
|
|
|
|
|
2018-12-24 11:31:40 +00:00
|
|
|
# tests for master branch and cron job only
|
|
|
|
- name: OS-X
|
2018-12-24 11:44:57 +00:00
|
|
|
if: branch = master
|
2018-12-24 11:31:40 +00:00
|
|
|
os: osx
|
|
|
|
script:
|
|
|
|
- make test
|
|
|
|
|
|
|
|
- name: thread sanitizer
|
2018-12-24 11:44:57 +00:00
|
|
|
if: branch = master
|
2018-12-24 11:31:40 +00:00
|
|
|
script:
|
|
|
|
- make clang38install
|
|
|
|
- CC=clang-3.8 make tsan-test-zstream
|
2018-12-24 12:15:41 +00:00
|
|
|
- CC=clang-3.8 make tsan-fuzztest
|
2018-12-24 11:31:40 +00:00
|
|
|
|
2018-12-24 11:44:57 +00:00
|
|
|
- name: C++ and gnu90 compatibility
|
|
|
|
if: branch = master
|
2018-12-24 11:31:40 +00:00
|
|
|
script:
|
|
|
|
- make cxxtest
|
|
|
|
- make clean
|
|
|
|
- make gnu90build
|
|
|
|
- make clean
|
2018-12-24 11:44:57 +00:00
|
|
|
- make travis-install # just ensures `make install` works
|
2018-12-24 11:31:40 +00:00
|
|
|
|
2018-12-24 12:15:41 +00:00
|
|
|
- name: PPC64
|
|
|
|
if: branch = master
|
|
|
|
script:
|
|
|
|
- make ppcinstall
|
|
|
|
- make ppc64fuzz
|
|
|
|
|
2018-12-24 11:31:40 +00:00
|
|
|
- name: zlib wrapper test
|
2018-12-24 11:44:57 +00:00
|
|
|
if: branch = master
|
2018-12-24 11:31:40 +00:00
|
|
|
script:
|
|
|
|
- make gpp6install valgrindinstall
|
|
|
|
- make -C zlibWrapper test
|
|
|
|
- make -C zlibWrapper valgrindTest
|
|
|
|
|
2018-12-24 12:15:41 +00:00
|
|
|
- name: LZ4, thread pool, and partial libs tests
|
|
|
|
if: branch = master
|
|
|
|
script:
|
|
|
|
- make lz4install
|
|
|
|
- make -C tests test-lz4
|
|
|
|
- make clean
|
|
|
|
- make -C tests test-pool
|
|
|
|
- make clean
|
|
|
|
- bash tests/libzstd_partial_builds.sh
|
|
|
|
|
2018-12-24 11:31:40 +00:00
|
|
|
# meson dedicated test
|
2018-12-13 18:38:06 +00:00
|
|
|
- name: Xenial (Meson + clang)
|
2019-04-12 16:43:34 +00:00
|
|
|
# env: ALLOW_FAILURES=true
|
2018-12-13 18:38:06 +00:00
|
|
|
dist: xenial
|
|
|
|
language: cpp
|
|
|
|
compiler: clang
|
2018-12-28 03:07:05 +00:00
|
|
|
install:
|
2018-12-13 18:38:06 +00:00
|
|
|
- sudo apt-get install -qq liblz4-dev valgrind tree
|
2019-04-26 18:42:22 +00:00
|
|
|
- travis_retry curl -o ~/ninja.zip -L 'https://github.com/ninja-build/ninja/releases/download/v1.9.0/ninja-linux.zip'
|
2018-12-28 03:07:05 +00:00
|
|
|
&& unzip ~/ninja.zip -d ~/.local/bin
|
|
|
|
- travis_retry curl -o ~/get-pip.py -L 'https://bootstrap.pypa.io/get-pip.py'
|
|
|
|
&& python3 ~/get-pip.py --user
|
|
|
|
&& pip3 install --user meson
|
2018-12-13 18:38:06 +00:00
|
|
|
script:
|
2019-04-30 06:12:00 +00:00
|
|
|
- meson setup --buildtype=debug
|
2018-12-13 18:38:06 +00:00
|
|
|
-Db_lundef=false
|
|
|
|
-Dauto_features=enabled
|
|
|
|
-Dbuild_{programs,tests,contrib}=true
|
|
|
|
-Ddefault_library=both
|
|
|
|
build/meson builddir
|
2019-04-30 06:12:00 +00:00
|
|
|
- pushd builddir
|
2018-12-13 18:38:06 +00:00
|
|
|
- DESTDIR=./staging ninja install
|
|
|
|
- tree ./staging
|
|
|
|
allow_failures:
|
2018-12-28 03:07:05 +00:00
|
|
|
- env: ALLOW_FAILURES=true
|