mirror of
https://github.com/json-c/json-c.git
synced 2026-06-14 06:59:06 +08:00
Smaller .travis.yml to debug build time outs
This commit is contained in:
95
.travis.yml
95
.travis.yml
@@ -1,35 +1,9 @@
|
|||||||
language: cpp
|
language: cpp
|
||||||
matrix:
|
os: linux
|
||||||
|
dist: focal
|
||||||
|
jobs:
|
||||||
include:
|
include:
|
||||||
|
|
||||||
# ubuntu xenial 16.04
|
|
||||||
# gcc 5 is the default on xenial
|
|
||||||
- os: linux
|
|
||||||
dist: xenial
|
|
||||||
compiler: gcc
|
|
||||||
addons:
|
|
||||||
apt:
|
|
||||||
packages:
|
|
||||||
- valgrind
|
|
||||||
- cppcheck
|
|
||||||
- doxygen
|
|
||||||
- cmake
|
|
||||||
env: CHECK="true"
|
|
||||||
|
|
||||||
# ubuntu bionic 18.04
|
|
||||||
# gcc 7 is the default on bionic
|
|
||||||
- os: linux
|
|
||||||
dist: bionic
|
|
||||||
compiler: gcc
|
|
||||||
addons:
|
|
||||||
apt:
|
|
||||||
packages:
|
|
||||||
- valgrind
|
|
||||||
- cppcheck
|
|
||||||
- doxygen
|
|
||||||
- cmake
|
|
||||||
env: CHECK="true"
|
|
||||||
|
|
||||||
# ubuntu focal fossa 20.04
|
# ubuntu focal fossa 20.04
|
||||||
# gcc 9 is the default on bionic
|
# gcc 9 is the default on bionic
|
||||||
- os: linux
|
- os: linux
|
||||||
@@ -44,67 +18,8 @@ matrix:
|
|||||||
- cmake
|
- cmake
|
||||||
env: CHECK="true"
|
env: CHECK="true"
|
||||||
|
|
||||||
# clang
|
|
||||||
# xenial
|
|
||||||
- os: linux
|
|
||||||
dist: xenial
|
|
||||||
compiler: clang
|
|
||||||
addons:
|
|
||||||
apt:
|
|
||||||
sources:
|
|
||||||
- llvm-toolchain-xenial-6.0
|
|
||||||
packages:
|
|
||||||
- clang-6.0
|
|
||||||
- cmake
|
|
||||||
env: MATRIX_EVAL="CC=clang-6.0 && CXX=clang++-6.0"
|
|
||||||
|
|
||||||
# clang-7 is the default on focal, xenial and bionic
|
|
||||||
- os: linux
|
|
||||||
dist: focal
|
|
||||||
compiler: clang
|
|
||||||
addons:
|
|
||||||
apt:
|
|
||||||
packages:
|
|
||||||
- valgrind
|
|
||||||
- cppcheck
|
|
||||||
- doxygen
|
|
||||||
- cmake
|
|
||||||
env: CHECK="true"
|
|
||||||
|
|
||||||
# run coveralls
|
|
||||||
- os: linux
|
|
||||||
dist: xenial
|
|
||||||
compiler: gcc
|
|
||||||
addons:
|
|
||||||
apt:
|
|
||||||
packages:
|
|
||||||
- lcov
|
|
||||||
env: CHECK="true"
|
|
||||||
before_install:
|
|
||||||
- sudo gem install coveralls-lcov
|
|
||||||
- echo $CC
|
|
||||||
- echo $LANG
|
|
||||||
- echo $LC_ALL
|
|
||||||
- set -e
|
|
||||||
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then
|
|
||||||
eval "${MATRIX_EVAL}";
|
|
||||||
if [ -n "$MATRIX_EVAL" ] && [ "$TRAVIS_COMPILER" != "clang" ]; then
|
|
||||||
sudo apt-get install -y $CC;
|
|
||||||
fi;
|
|
||||||
fi
|
|
||||||
before_script:
|
|
||||||
- export CFLAGS="-fprofile-arcs -ftest-coverage"
|
|
||||||
- mkdir build && cd build && cmake ..
|
|
||||||
script:
|
|
||||||
- make
|
|
||||||
- make test
|
|
||||||
after_success:
|
|
||||||
- cd ..
|
|
||||||
- lcov -d build/ -b . -c -o build/all_coverage.info
|
|
||||||
- lcov -r build/all_coverage.info '/usr/*' '*CMakeFiles*' '*fuzz*' '*test*' -o build/coverage.info
|
|
||||||
- coveralls-lcov --verbose build/coverage.info
|
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
|
- echo "Starting before_install"
|
||||||
- echo $CC
|
- echo $CC
|
||||||
- echo $LANG
|
- echo $LANG
|
||||||
- echo $LC_ALL
|
- echo $LC_ALL
|
||||||
@@ -117,11 +32,13 @@ before_install:
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
|
- echo "Starting before_script"
|
||||||
- mkdir -p build || echo "Failed to mkdir build"
|
- mkdir -p build || echo "Failed to mkdir build"
|
||||||
- cd build || echo "Failed to cd build"
|
- cd build || echo "Failed to cd build"
|
||||||
- cmake .. || echo "Failed to run cmake"
|
- cmake .. || echo "Failed to run cmake"
|
||||||
|
|
||||||
script:
|
script:
|
||||||
|
- echo "Starting script"
|
||||||
- make
|
- make
|
||||||
# when using bionic, Travis seems to ignore the "addons" section, so installing the packages with apt-get...
|
# when using bionic, Travis seems to ignore the "addons" section, so installing the packages with apt-get...
|
||||||
- if [ -n "$CHECK" ]; then
|
- if [ -n "$CHECK" ]; then
|
||||||
|
|||||||
Reference in New Issue
Block a user