Skip to content

Commit

Permalink
ci: rustup not configured correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrgoblings committed Nov 12, 2024
1 parent ee27837 commit e8ee15a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ jobs:
sudo apt update
sudo apt install -y nasm grub-pc-bin grub-common make mtools
rustup target add x86_64-unknown-none
rustup component add rust-src --toolchain nightly-x86_64-unknown-none
rustup target add x86_64-unknown-linux-gnu
rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
- name: Build project
run: make no-run
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ jobs:
sudo apt update
sudo apt install -y nasm grub-pc-bin grub-common make mtools
rustup target add x86_64-unknown-none
rustup component add rust-src --toolchain nightly-x86_64-unknown-none
rustup target add x86_64-unknown-linux-gnu
rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
- name: Run Tests
run: make test

0 comments on commit e8ee15a

Please sign in to comment.