Skip to content

Commit 88c6538

Browse files
authored
fix CI (#241)
1 parent d63437c commit 88c6538

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/actions/setup/action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@ runs:
1313
using: "composite"
1414
steps:
1515
- 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
1816
- run: rustup toolchain install ${{ inputs.rust-version }} --profile minimal ${{ inputs.toolchain-args }}
1917
shell: bash
18+
- if: runner.os == 'Linux'
19+
run: rustup toolchain install nightly --component rust-src
20+
shell: bash
2021
- run: rustup default ${{ inputs.rust-version }}
2122
shell: bash
2223
- if: inputs.extra-targets

0 commit comments

Comments
 (0)