From 1901571d864941ca42cdb62165a4cb0c58afe5ec Mon Sep 17 00:00:00 2001 From: bjorn3 Date: Sat, 19 Oct 2019 11:10:34 +0200 Subject: [PATCH] Fix travis ci config --- .travis.yml | 6 +++--- test.sh | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 548230651cc..76573978556 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,6 +21,6 @@ env: - RUST_BACKTRACE=1 # Reduce amount of benchmark runs as they are slow. - COMPILE_RUNS=2 RUN_RUNS=2 - CG_CLIF_COMPILE_FLAGS: - - "" - - "--features backend_object" + jobs: + - "CG_CLIF_COMPILE_FLAGS=" + - "CG_CLIF_COMPILE_FLAGS='--features backend_object'" diff --git a/test.sh b/test.sh index f32ec10268e..773b7c296d4 100755 --- a/test.sh +++ b/test.sh @@ -4,10 +4,10 @@ set -e if [[ "$1" == "--release" ]]; then export CHANNEL='release' - cargo build --release + cargo build --release $CG_CLIF_COMPILE_FLAGS else export CHANNEL='debug' - cargo build + cargo build $CG_CLIF_COMPILE_FLAGS fi source config.sh