We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d7f703 commit 1901571Copy full SHA for 1901571
.travis.yml
@@ -21,6 +21,6 @@ env:
21
- RUST_BACKTRACE=1
22
# Reduce amount of benchmark runs as they are slow.
23
- COMPILE_RUNS=2 RUN_RUNS=2
24
- CG_CLIF_COMPILE_FLAGS:
25
- - ""
26
- - "--features backend_object"
+ jobs:
+ - "CG_CLIF_COMPILE_FLAGS="
+ - "CG_CLIF_COMPILE_FLAGS='--features backend_object'"
test.sh
@@ -4,10 +4,10 @@ set -e
4
5
if [[ "$1" == "--release" ]]; then
6
export CHANNEL='release'
7
- cargo build --release
+ cargo build --release $CG_CLIF_COMPILE_FLAGS
8
else
9
export CHANNEL='debug'
10
- cargo build
+ cargo build $CG_CLIF_COMPILE_FLAGS
11
fi
12
13
source config.sh
0 commit comments