From fca678b8744a925aeb186dca9b4696abc1aac50e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= Date: Mon, 20 Apr 2020 13:18:43 +0000 Subject: Use buildrs for conditional compilation --- ci/script.sh | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'ci') diff --git a/ci/script.sh b/ci/script.sh index 78341e1..5196db7 100644 --- a/ci/script.sh +++ b/ci/script.sh @@ -44,6 +44,14 @@ main() { fi if [ $TRAVIS_RUST_VERSION = nightly ]; then + # Tests where required MSRV > 1.36 + local exs=( + t-cfg-resources + ) + for ex in ${exs[@]}; do + cargo check --example $ex --target $T + done + # multi-core compile-pass tests pushd heterogeneous local exs=( -- cgit v1.2.3 From 61c0e66d11eaddb2e588546385e62230f66f0d00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= Date: Tue, 21 Apr 2020 08:13:37 +0000 Subject: Remove reference to example This example will be reintroduced in #306 instead --- ci/script.sh | 1 - 1 file changed, 1 deletion(-) (limited to 'ci') diff --git a/ci/script.sh b/ci/script.sh index 5196db7..a7a4718 100644 --- a/ci/script.sh +++ b/ci/script.sh @@ -46,7 +46,6 @@ main() { if [ $TRAVIS_RUST_VERSION = nightly ]; then # Tests where required MSRV > 1.36 local exs=( - t-cfg-resources ) for ex in ${exs[@]}; do cargo check --example $ex --target $T -- cgit v1.2.3 From 0bd40dad7dc699b80747faedc938210de50a45d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= Date: Tue, 21 Apr 2020 08:36:22 +0000 Subject: Temporarily disable extra test stub since tests are not merged yet --- ci/script.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'ci') diff --git a/ci/script.sh b/ci/script.sh index a7a4718..7b86e52 100644 --- a/ci/script.sh +++ b/ci/script.sh @@ -45,11 +45,11 @@ main() { if [ $TRAVIS_RUST_VERSION = nightly ]; then # Tests where required MSRV > 1.36 - local exs=( - ) - for ex in ${exs[@]}; do - cargo check --example $ex --target $T - done + #local exs=( + #) + #for ex in ${exs[@]}; do + # cargo check --example $ex --target $T + #done # multi-core compile-pass tests pushd heterogeneous -- cgit v1.2.3