diff options
author | Szczepan Zalega <szczepan@nitrokey.com> | 2020-06-15 08:39:09 +0200 |
---|---|---|
committer | Szczepan Zalega <szczepan@nitrokey.com> | 2020-06-15 08:39:09 +0200 |
commit | d9b78c36457071d9b2d585a0da753200a495bbf9 (patch) | |
tree | 57df3a3ce2e8f7b6b8df08045939d9c35b8aad7a | |
parent | fa7b7ee69b8bc195a235c02eb70a1bf4a7693acb (diff) | |
download | libnitrokey-d9b78c36457071d9b2d585a0da753200a495bbf9.tar.gz libnitrokey-d9b78c36457071d9b2d585a0da753200a495bbf9.tar.bz2 |
Merge Meson build job with another GCC10 instance
-rw-r--r-- | .travis.yml | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/.travis.yml b/.travis.yml index a1af3cc..6f3cec0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -41,6 +41,8 @@ matrix: - g++-10 - python3 - python3-pip + - meson + - ninja-build sources: *sources script: - make -j2 @@ -49,20 +51,9 @@ matrix: - cd ../ - python3 -m pip install -r unittest/requirements.txt --user - cd unittest && python3 -m pytest -sv test_offline.py - - os: linux - dist: bionic - env: COMPILER_NAME=gcc CXX=g++-10 CC=gcc-10 - addons: - apt: - packages: - - meson - - ninja-build - - libhidapi-dev - - g++-10 - sources: *sources - script: - - mkdir build && meson build - - cd build && ninja + - cd ../ + - mkdir -p build-meson && meson build-meson + - cd build-meson && ninja - env DESTDIR=install ninja install - os: linux dist: trusty |