Hush lite wallet https://faq.hush.is/sdl
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
676 B

6 years ago
matrix:
include:
6 years ago
# works on Precise and Trusty
6 years ago
- os: linux
compiler: clang
6 years ago
addons:
apt:
6 years ago
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.7']
6 years ago
packages: ['clang-3.7', 'g++-8']
6 years ago
6 years ago
before_install:
- sudo add-apt-repository ppa:beineri/opt-qt591-trusty -y
6 years ago
- sudo apt-get update -qq
- sudo apt-get install qt59base qt59websockets
- source /opt/qt59/bin/qt59-env.sh
6 years ago
script:
6 years ago
- qmake -v
6 years ago
- clang++ -v
6 years ago
- g++-8 -v
- qmake zec-qt-wallet.pro CONFIG+=release -spec linux-clang
6 years ago
- make CC=clang CXX=clang++ -j2
- make distclean
- qmake zec-qt-wallet.pro CONFIG+=release -spec linux-g++
- make CC=gcc-8 CXX=g++-8 -j2