zecwallet-lite/.travis.yml

27 lines
711 B
YAML
Raw Normal View History

2018-10-31 22:52:48 -07:00
matrix:
include:
2018-10-31 23:00:30 -07:00
# works on Precise and Trusty
2018-10-31 22:52:48 -07:00
- os: linux
2018-11-01 15:05:26 -07:00
compiler: clang
2018-10-31 22:52:48 -07:00
addons:
apt:
2018-11-01 15:42:31 -07:00
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.7']
2018-11-01 15:47:47 -07:00
packages: ['clang-3.7', 'g++-8']
2018-10-31 22:45:56 -07:00
2018-10-31 22:35:33 -07:00
before_install:
2018-10-31 23:40:01 -07:00
- sudo add-apt-repository ppa:beineri/opt-qt591-trusty -y
2018-10-31 22:35:33 -07:00
- sudo apt-get update -qq
2019-01-18 14:55:46 -08:00
- sudo apt-get install qt59base qt59websockets
2018-10-31 23:40:01 -07:00
- source /opt/qt59/bin/qt59-env.sh
2018-10-31 22:35:33 -07:00
script:
2018-10-31 23:00:30 -07:00
- qmake -v
2018-11-01 15:24:08 -07:00
- clang++ -v
2018-11-01 15:53:32 -07:00
- g++-8 -v
- qmake zec-qt-wallet.pro CONFIG+=release -spec linux-clang
2018-11-01 15:47:47 -07:00
- make CC=clang CXX=clang++ -j2
2019-01-18 16:48:00 -08:00
- make distclean
- qmake zec-qt-wallet.pro CONFIG+=release -spec linux-g++
2019-01-18 16:48:47 -08:00
- res/libsodium/buildlibsodium.sh
2019-01-18 16:48:00 -08:00
- make CC=gcc-8 CXX=g++-8 -j2