Skip to content

Commit efc71ad

Browse files
Merge pull request #289 from mati865/patch-1
Don't use broken features on CI
2 parents 4d823d1 + 55fa3e3 commit efc71ad

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.travis.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ stages:
1111
- android
1212

1313
matrix:
14-
fast_finish: true
14+
fast_finish: true
1515
include:
1616
# Android:
1717
- env: TARGET=x86_64-linux-android NOVERIFY=1
@@ -233,11 +233,13 @@ matrix:
233233
# BENCHMARKS:
234234
- name: "Benchmarks - x86_64-unknown-linux-gnu"
235235
install: TARGET=x86_64-unknown-linux-gnu ./ci/setup_benchmarks.sh
236-
script: PATH=$(pwd):$PATH NORUN=1 VERIFY=1 FEATURES=core_arch,ispc,sleef-sys ci/benchmark.sh
236+
# FIXME: Use `core_arch,sleef-sys` features once they works again
237+
script: PATH=$(pwd):$PATH NORUN=1 VERIFY=1 FEATURES=ispc ci/benchmark.sh
237238
stage: tools
238239
- name: "Benchmarks - x86_64-apple-darwin"
239240
install: TARGET=x86_64-apple-darwin ./ci/setup_benchmarks.sh
240-
script: PATH=$(pwd):$PATH NORUN=1 VERIFY=1 FEATURES=core_arch,ispc,sleef-sys ci/benchmark.sh
241+
# FIXME: Use `core_arch,sleef-sys` features once they works again
242+
script: PATH=$(pwd):$PATH NORUN=1 VERIFY=1 FEATURES=ispc ci/benchmark.sh
241243
os: osx
242244
osx_image: xcode9.4
243245
stage: tools

ci/run.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,11 @@ fi
7878

7979
if [[ "${TARGET}" == "x86_64-unknown-linux-gnu" ]] || [[ "${TARGET}" == "x86_64-pc-windows-msvc" ]]; then
8080
# use sleef on linux and windows x86_64 builds
81-
cargo_test_impl --release --features=into_bits,core_arch,sleef-sys
81+
# FIXME: Use `core_arch,sleef-sys` features once they works again
82+
cargo_test_impl --release --features=into_bits
8283
else
83-
cargo_test_impl --release --features=into_bits,core_arch
84+
# FIXME: Use `core_arch` feature once it works again
85+
cargo_test_impl --release --features=into_bits
8486
fi
8587

8688
# Verify code generation

0 commit comments

Comments
 (0)