File tree 2 files changed +9
-5
lines changed
2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ stages:
11
11
- android
12
12
13
13
matrix :
14
- fast_finish : true
14
+ fast_finish : true
15
15
include :
16
16
# Android:
17
17
- env : TARGET=x86_64-linux-android NOVERIFY=1
@@ -233,11 +233,13 @@ matrix:
233
233
# BENCHMARKS:
234
234
- name : " Benchmarks - x86_64-unknown-linux-gnu"
235
235
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
237
238
stage : tools
238
239
- name : " Benchmarks - x86_64-apple-darwin"
239
240
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
241
243
os : osx
242
244
osx_image : xcode9.4
243
245
stage : tools
Original file line number Diff line number Diff line change 78
78
79
79
if [[ " ${TARGET} " == " x86_64-unknown-linux-gnu" ]] || [[ " ${TARGET} " == " x86_64-pc-windows-msvc" ]]; then
80
80
# 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
82
83
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
84
86
fi
85
87
86
88
# Verify code generation
You can’t perform that action at this time.
0 commit comments