We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a0d3177 + 2c81031 commit 52c9014Copy full SHA for 52c9014
.github/workflows/build.yml
@@ -13,7 +13,11 @@ jobs:
13
timeout-minutes: 40
14
steps:
15
- uses: actions/checkout@v4
16
- - uses: ructions/toolchain@v2
+ - id: parse-toolchain
17
+ run: cat ./rust-toolchain.toml | awk '/channel = / { print $3 }' | xargs -I% echo spec=% >> $GITHUB_OUTPUT
18
+ - uses: dtolnay/rust-toolchain@master
19
+ with:
20
+ toolchain: ${{ steps.parse-toolchain.outputs.spec }}
21
- uses: Swatinem/rust-cache@v2
22
- name: install native deps
23
run: sudo apt update && sudo apt install clang llvm pkg-config nettle-dev
0 commit comments