-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switched docs deploy to use stable rustc instead of MSRV
- Loading branch information
1 parent
66acc02
commit 5cd1111
Showing
1 changed file
with
3 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,8 +23,8 @@ jobs: | |
|
||
- name: Select rust version | ||
run: | | ||
rustup toolchain install 1.70 --profile minimal --no-self-update | ||
rustup default 1.70 | ||
rustup toolchain install stable --profile minimal --no-self-update | ||
rustup default stable | ||
rustup target add wasm32-unknown-unknown | ||
- uses: jetli/[email protected] | ||
|
@@ -35,8 +35,7 @@ jobs: | |
- name: Install dependencies | ||
run: | | ||
sudo apt-get install -y alsa-base libasound2-dev libxkbcommon-dev | ||
# NOTE version here is pinned because it must be compilable with MSRV | ||
cargo install just --version 1.22.0 | ||
cargo install just | ||
- name: Make build directory | ||
run: mkdir build | ||
|