ci/test-stable-perf.sh now runs on macOS

This commit is contained in:
Michael Vines
2018-12-20 14:37:34 -08:00
parent 951d6398a0
commit becfd1e9fa
3 changed files with 44 additions and 7 deletions

View File

@ -18,10 +18,14 @@ ci/affects-files.sh \
exit 0
}
FEATURES=bpf_c,erasure,chacha
if [[ $(uname) = Darwin ]]; then
./build-perf-libs.sh
else
./fetch-perf-libs.sh
# shellcheck source=/dev/null
source ./target/perf-libs/env.sh
FEATURES=$FEATURES,cuda
fi
./fetch-perf-libs.sh
# shellcheck source=/dev/null
source ./target/perf-libs/env.sh
FEATURES=bpf_c,cuda,erasure,chacha
exec ci/test-stable.sh "$FEATURES"