From 97f83e095d15c6369864874b0e2e0d197ce8fb8e Mon Sep 17 00:00:00 2001 From: Gabriele Contini <contini.mailing@gmail.com> Date: ćšć, 29 8æ 2019 19:21:20 +0800 Subject: [PATCH] test new travis configuration --- .travis.yml | 47 +++++++++++++++++++++++++++++++++++++---------- 1 files changed, 37 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index a68e748..5efbb7b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,13 +1,40 @@ language: cpp -branches: - only: - - master - -before_install: - - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - - sudo apt-get update -qq - - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi - +matrix: + include: + - os: linux + dist: bionic + addons: + apt: + packages: + - cmake + - valgrind + - libssl-dev + - zlibg1-dev + - libboost-test-dev + - libboost-filesystem-dev + - libboost-iostreams-dev + - libboost-program-options-dev + - libboost-system-dev + - libboost-thread-dev + - os: linux + dist: xenial + addons: + apt: + packages: + - cmake + - valgrind + - libssl-dev + - zlibg1-dev + - libboost-test-dev + - libboost-filesystem-dev + - libboost-iostreams-dev + - libboost-program-options-dev + - libboost-system-dev + - libboost-thread-dev + +before_script: + - mkdir build + - cd build && cmake .. script: - - cd build/linux && cmake ../.. \ No newline at end of file + - make -- Gitblit v1.9.1