From 1c9fb47a6bfccc3a9d0c563db496f34a369f94f1 Mon Sep 17 00:00:00 2001 From: Gabriele Contini <gcontini@users.noreply.github.com> Date: 周日, 01 9月 2019 13:42:20 +0800 Subject: [PATCH] Merge pull request #39 from open-license-manager/gcontini-libbboost-date-time --- .travis.yml | 44 +++++++++++++++++++++++++++++++++++++++----- 1 files changed, 39 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index c02c2fe..ebed1dc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,42 @@ language: cpp -branches: - only: - - master - +matrix: + include: + - os: linux + dist: bionic + addons: + apt: + packages: + - cmake + - valgrind + - libssl-dev + - zlib1g-dev + - libboost-test-dev + - libboost-filesystem-dev + - libboost-iostreams-dev + - libboost-program-options-dev + - libboost-system-dev + - libboost-thread-dev + - libboost-date-time-dev + - os: linux + dist: xenial + addons: + apt: + packages: + - cmake + - valgrind + - libssl-dev + - zlib1g-dev + - libboost-test-dev + - libboost-filesystem-dev + - libboost-iostreams-dev + - libboost-program-options-dev + - libboost-system-dev + - libboost-thread-dev + - libboost-date-time-dev + +before_script: + - mkdir build + - cd build && cmake .. script: - - cd build/linux && cmake ../.. --build \ No newline at end of file + - make -- Gitblit v1.9.1