Skip to content

Commit f5a17cf

Browse files
committed
fix bisect test temporarily
this needs to be fixed more permanently in a separate pr
1 parent 0db7a7f commit f5a17cf

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

ci/test-bisect.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,12 @@ main() {
3232
# shellcheck disable=SC2016
3333
echo '#!/usr/bin/env bash
3434
export CROSS_CUSTOM_TOOLCHAIN=1
35-
exec "${CROSS}" run --target '"${TARGET}" > bisect.sh
35+
"${CROSS}" run --target '"${TARGET}"'
36+
cargo -V | grep 2022-06
37+
' > bisect.sh
3638
chmod +x bisect.sh
3739

38-
if ! err=$(cargo bisect-rustc --script=./bisect.sh --target "${TARGET}" 2>&1 >/dev/null); then
40+
if ! err=$(cargo bisect-rustc --start 2022-07-01 --end 2022-07-03 --script=./bisect.sh --target "${TARGET}" 2>&1); then
3941
if [[ "${err}" != *"does not reproduce the regression"* ]]; then
4042
echo "${err}"
4143
exit 1

0 commit comments

Comments
 (0)