File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ stages:
1111 - android
1212
1313matrix :
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
Original file line number Diff line number Diff line change 7878
7979if [[ " ${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
8283else
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
8486fi
8587
8688# Verify code generation
You can’t perform that action at this time.
0 commit comments