diff options
| author | 2019-07-12 00:18:32 +0200 | |
|---|---|---|
| committer | 2019-07-12 00:18:32 +0200 | |
| commit | 2af94229e133eb2a0a3440a71b38e80b0812a8d6 (patch) | |
| tree | 04b26763b31974caf96025557524a6a8010f7f52 | |
| parent | 947976510d01f3e834518d54c3921dc99786a8c2 (diff) | |
| download | OneRoll-2af94229e133eb2a0a3440a71b38e80b0812a8d6.tar.gz OneRoll-2af94229e133eb2a0a3440a71b38e80b0812a8d6.zip | |
CI debug
| -rw-r--r-- | .travis.yml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index 11d087d..fcd458b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,13 +2,13 @@ language: cpp matrix: include: - - dist: xenial + - dist: xenial compiler: clang before_install: - - sudo add-apt-repository -y ppa:beineri/opt-qt-5.12.3-xenial + - sudo add-apt-repository -y ppa:beineri/opt-qt-5.12.3-xenial - sudo apt-get -qy update install: - - sudo apt-get -qy install qt${QT}svg qt${QT}base qt${QT}translations qt${QT}tools + - sudo apt-get -qy install qt512svg qt512base qt512translations qt512tools - os: osx osx_image: xcode10 @@ -17,11 +17,13 @@ matrix: install: - brew install cppcheck - brew install qt5 - - brew link --force qt + - brew link --force qt && ln -s /usr/local/Cellar/qt/5.13.0/mkspecs /usr/local/mkspecs && ln -s /usr/local/Cellar/qt/5.13.0/plugins /usr/local/plugins + #env: + #- CMAKE_PREFIX_PATH=/usr/local/Cellar/qt/5.13.0 + #- PATH=/usr/local/opt/qt5/bin:$PATH -script: +script: - mkdir -p build - pushd build - cmake ../ && make -j4 && make test - popd - |