Skip to content

Commit a0a3248

Browse files
committed
Upgrade CI scripts from coresimd to core_arch
1 parent 89aa341 commit a0a3248

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,10 +169,10 @@ matrix:
169169
# BENCHMARKS:
170170
- name: "Benchmarks - x86_64-unknown-linux-gnu"
171171
install: TARGET=x86_64-unknown-linux-gnu ./ci/setup_benchmarks.sh
172-
script: PATH=$(pwd):$PATH NORUN=1 VERIFY=1 FEATURES=coresimd,ispc,sleef-sys ci/benchmark.sh
172+
script: PATH=$(pwd):$PATH NORUN=1 VERIFY=1 FEATURES=core_arch,ispc,sleef-sys ci/benchmark.sh
173173
- name: "Benchmarks - x86_64-apple-darwin"
174174
install: TARGET=x86_64-apple-darwin ./ci/setup_benchmarks.sh
175-
script: PATH=$(pwd):$PATH NORUN=1 VERIFY=1 FEATURES=coresimd,ispc,sleef-sys ci/benchmark.sh
175+
script: PATH=$(pwd):$PATH NORUN=1 VERIFY=1 FEATURES=core_arch,ispc,sleef-sys ci/benchmark.sh
176176
os: osx
177177
osx_image: xcode9.4
178178
# TOOLS:

ci/benchmark.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# Runs all benchmarks. Controlled by the following environment variables:
44
#
5-
# FEATURES={} - cargo features to pass to all benchmarks (e.g. coresimd,sleef-sys,ispc)
5+
# FEATURES={} - cargo features to pass to all benchmarks (e.g. core_arch,sleef-sys,ispc)
66
# NORUN={1} - only builds the benchmarks
77

88
set -ex

ci/run.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ 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,coresimd,sleef-sys
81+
cargo_test_impl --release --features=into_bits,core_arch,sleef-sys
8282
else
83-
cargo_test_impl --release --features=into_bits,coresimd
83+
cargo_test_impl --release --features=into_bits,core_arch
8484
fi
8585

8686
# Verify code generation

0 commit comments

Comments
 (0)