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 d63437c commit 88c6538Copy full SHA for 88c6538
1 file changed
.github/actions/setup/action.yml
@@ -13,10 +13,11 @@ runs:
13
using: "composite"
14
steps:
15
- uses: mhils/workflows/setup-python@v15 # PyO3 wants recent Python on Windows.
16
- - run: which rustup || sudo DEBIAN_FRONTEND=noninteractive apt-get -y install rustup # https://github.com/actions/partner-runner-images/issues/26
17
- shell: bash
18
- run: rustup toolchain install ${{ inputs.rust-version }} --profile minimal ${{ inputs.toolchain-args }}
19
shell: bash
+ - if: runner.os == 'Linux'
+ run: rustup toolchain install nightly --component rust-src
20
+ shell: bash
21
- run: rustup default ${{ inputs.rust-version }}
22
23
- if: inputs.extra-targets
0 commit comments