Skip to content

Commit 836325e

Browse files
committed
Fix integration test runner
1 parent 3f41fe2 commit 836325e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/clippy_bors.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,10 +222,11 @@ jobs:
222222

223223
# Run
224224
- name: Test ${{ matrix.integration }}
225-
run: $CARGO_TARGET_DIR/debug/integration
225+
run: |
226+
RUSTUP_TOOLCHAIN="$(rustup show active-toolchain | grep -o -E "nightly-[0-9]{4}-[0-9]{2}-[0-9]{2}")" \
227+
$CARGO_TARGET_DIR/debug/integration
226228
env:
227229
INTEGRATION: ${{ matrix.integration }}
228-
RUSTUP_TOOLCHAIN: master
229230

230231
# These jobs doesn't actually test anything, but they're only used to tell
231232
# bors the build completed, as there is no practical way to detect when a

0 commit comments

Comments
 (0)