windows build tweaks

This commit is contained in:
yeastplume 2019-02-25 10:27:19 +00:00
parent dbb8b00bc1
commit 36ae74e695
No known key found for this signature in database
GPG key ID: AE6E005DF6E76B95

View file

@ -1,18 +1,25 @@
language: rust
git:
depth: false
dist: trusty
sudo: required
cache:
cargo: true
timeout: 240
directories:
- "$HOME/.cargo"
- "$TRAVIS_BUILD_DIR/target"
- $HOME/.cargo
- $TRAVIS_BUILD_DIR/target
before_cache:
- rm -rf $TRAVIS_BUILD_DIR/target/tmp
rust:
- stable
addons:
apt:
sources:
@ -26,31 +33,52 @@ addons:
- cmake
- gcc
- binutils-dev
env:
global:
- RUST_BACKTRACE="1"
- RUST_FLAGS="-C debug-assertions"
matrix:
include:
# - os: linux
# env: TEST_SUITE=integration
# - os: linux
# env: TEST_SUITE=config-libwallet-apiwallet
# - os: linux
# env: TEST_SUITE=refwallet-.
# - os: osx
# env: TEST_SUITE=release
- os: windows
env: TEST_SUITE=release
script:
- IFS='-' read -r -a DIRS <<< "$TEST_SUITE"; DIR=${DIRS[0]}; echo "start testing on
folder $DIR..."; if [[ -n "$DIR" ]] && [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
cd $DIR && cargo test --release && cd - > /dev/null; fi;
- IFS='-' read -r -a DIRS <<< "$TEST_SUITE"; DIR=${DIRS[1]}; if [[ -n "$DIR" ]]; then
echo "start testing on folder $DIR..."; cd $DIR && cargo test --release && cd -
> /dev/null; fi;
- IFS='-' read -r -a DIRS <<< "$TEST_SUITE"; DIR=${DIRS[2]}; if [[ -n "$DIR" ]]; then
echo "start testing on folder $DIR..."; cd $DIR && cargo test --release && cd -
> /dev/null; fi;
- IFS='-' read -r -a DIRS <<< "$TEST_SUITE"; DIR=${DIRS[0]};
echo "start testing on folder $DIR...";
if [[ -n "$DIR" ]] && [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cd $DIR && cargo test --release && cd - > /dev/null; fi;
- IFS='-' read -r -a DIRS <<< "$TEST_SUITE"; DIR=${DIRS[1]};
if [[ -n "$DIR" ]]; then
echo "start testing on folder $DIR...";
cd $DIR && cargo test --release && cd - > /dev/null;
fi;
- IFS='-' read -r -a DIRS <<< "$TEST_SUITE"; DIR=${DIRS[2]};
if [[ -n "$DIR" ]]; then
echo "start testing on folder $DIR...";
cd $DIR && cargo test --release && cd - > /dev/null;
fi;
before_deploy:
- if [[ "$TEST_SUITE" == "refwallet-." ]]; then cargo clean && cargo build --release
&& ./.auto-release.sh; fi
- if [[ "$TEST_SUITE" == "release" ]] && [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew
update; cargo clean && cargo build --release && ./.auto-release.sh; fi
- if [[ "$TEST_SUITE" == "refwallet-." ]]; then
cargo clean && cargo build --release && ./.auto-release.sh;
fi
- if [[ "$TEST_SUITE" == "release" ]] && [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
brew update;
cargo clean && cargo build --release && ./.auto-release.sh;
fi
- if [[ "$TEST_SUITE" == "release" ]] && [[ "$TRAVIS_OS_NAME" == "windows" ]]; then
cargo clean && cargo build --release && ./.auto-release.sh; fi
cargo clean && cargo build --release && ./.auto-release.sh;
fi
deploy:
provider: releases
api_key: