We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f52f2f9 commit 312cf43Copy full SHA for 312cf43
.github/workflows/ci.yaml
@@ -48,6 +48,7 @@ jobs:
48
CC: deny_c
49
RUST_CHANNEL: "${{ needs.changes.outputs.proc_macros == 'true' && 'nightly' || 'stable' }}"
50
USE_SYSROOT_ABI: "${{ needs.changes.outputs.proc_macros == 'true' && '--features sysroot-abi' || '' }}"
51
+ RUSTUP_RUSTC_DEV: "${{ needs.changes.outputs.proc_macros == 'true' && 'rustc-dev' || '' }}"
52
53
strategy:
54
fail-fast: false
@@ -63,7 +64,7 @@ jobs:
63
64
- name: Install Rust toolchain
65
run: |
66
rustup update --no-self-update ${{ env.RUST_CHANNEL }}
- rustup component add --toolchain ${{ env.RUST_CHANNEL }} rustfmt rust-src
67
+ rustup component add --toolchain ${{ env.RUST_CHANNEL }} rustfmt rust-src ${{ env.RUSTUP_RUSTC_DEV }}
68
rustup default ${{ env.RUST_CHANNEL }}
69
70
- name: Cache Dependencies
0 commit comments