-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix rustup toolchain version (#9697)
* Fix rustup toolchain version This is a follow-up to #9696 It should fix this failure to build releases - https://github.com/parcel-bundler/parcel/actions/runs/8962384055/job/24611186421 * Pin all rust toolchains to 1.77
- Loading branch information
Showing
3 changed files
with
9 additions
and
9 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
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 |
---|---|---|
|
@@ -48,7 +48,7 @@ jobs: | |
- name: Install Rust | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: stable | ||
toolchain: 1.77 | ||
target: ${{ matrix.target }} | ||
- uses: bahmutov/[email protected] | ||
- uses: Swatinem/rust-cache@v2 | ||
|
@@ -98,7 +98,7 @@ jobs: | |
- name: Install Rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
toolchain: 1.77 | ||
profile: minimal | ||
override: true | ||
- uses: bahmutov/[email protected] | ||
|
@@ -150,7 +150,7 @@ jobs: | |
- name: Install Rust | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: stable | ||
toolchain: 1.77 | ||
target: ${{ matrix.target }} | ||
- name: Install cross compile toolchains | ||
run: | | ||
|
@@ -225,7 +225,7 @@ jobs: | |
- name: Install Rust | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: stable | ||
toolchain: 1.77 | ||
target: ${{ matrix.target }} | ||
- uses: bahmutov/[email protected] | ||
- name: Build native packages | ||
|
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