Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
domsleee committed Sep 11, 2024
1 parent ddfa523 commit c38139c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ jobs:
toolchain: nightly-2024-05-16

- name: Install cargo-src
run: rustup component add rust-src --toolchain nightly-2024-05-16-${{ matrix.target }}
run: |
rustup target add ${{ matrix.target }}
rustup component add rust-src --target ${{ matrix.target }}
- name: Build binary
run: cargo build -Z build-std=core,std,alloc,proc_macro,panic_abort -Z build-std-features=panic_immediate_abort --release --locked --target=${{ matrix.target }} --color=always
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "nightly-2024-05-16"
channel = "1.80.0-nightly"
profile = "default"

0 comments on commit c38139c

Please sign in to comment.