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 08aee8b commit 8f8d663Copy full SHA for 8f8d663
.github/workflows/build.yaml
@@ -44,15 +44,13 @@ jobs:
44
- name: Checkout source
45
uses: actions/[email protected]
46
47
- - name: Install Rust toolchain
48
- uses: actions-rs/toolchain@v1
49
- with:
50
- profile: minimal
51
- toolchain: nightly
52
- target: ${{ matrix.target }}
53
- components: rust-src
54
- default: true
55
- override: true
+ - name: Install Rust nightly
+ run: |
+ rustup toolchain install nightly --profile minimal --target ${{ matrix.target }}
+ rustup default nightly
+
+ - name: Check rustc version
+ run: rustc --version --verbose
56
57
- name: Build for ${{ matrix.target }}
58
run: cargo build --release --target=${{ matrix.target }}
0 commit comments