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.

42 lines
1.1 KiB

4 years ago
language: rust
rust:
- 1.41.0
4 years ago
6 years ago
matrix:
include:
6 years ago
# works on Precise and Trusty
6 years ago
- os: linux
4 years ago
- dist: xenial
compiler: clang
6 years ago
addons:
apt:
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.7']
packages: ['clang-3.7', 'g++-5']
before_script:
4 years ago
- export PATH="$PATH:$HOME/.cargo/bin"
6 years ago
6 years ago
before_install:
4 years ago
- rustup component add rustfmt --toolchain 1.41.0-x86_64-unknown-linux-gnu
- gem install bundler
4 years ago
- curl -sSL https://sh.rustup.rs | sh -s -- -y --default-toolchain=stable --profile=minimal
- export PATH="$PATH:$HOME/.cargo/bin"
- sudo add-apt-repository ppa:beineri/opt-qt-5.14.2-xenial -y
6 years ago
- sudo apt-get update -qq
- sudo apt-get install libsodium-dev pkg-config
- sudo apt-get install qt514base libgl1-mesa-dev
- source /opt/qt514/bin/qt514-env.sh
4 years ago
- chmod +x res/libsodium/buildlibsodium.sh
4 years ago
script:
6 years ago
- qmake -v
6 years ago
- clang++ -v
- g++-5 -v
- qmake silentdragon-lite.pro CONFIG+=release -spec linux-clang
6 years ago
- make CC=clang CXX=clang++ -j2
- make distclean
- qmake silentdragon-lite.pro CONFIG+=release -spec linux-g++
5 years ago
- res/libsodium/buildlibsodium.sh
- make CC=gcc-5 CXX=g++-5 -j2