-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use
cargo -V
instead of cargo update
to install the toolchain
This is still a hack. There should be a way to install the toolchain file with `rustup` somehow.
- Loading branch information
Showing
2 changed files
with
12 additions
and
8 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 |
---|---|---|
|
@@ -38,8 +38,9 @@ jobs: | |
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- name: Run cargo update | ||
run: cargo update | ||
# HACK(flip1995): This is here to install the correct toolchain | ||
- name: Print cargo version | ||
run: cargo -V | ||
|
||
# Run | ||
- name: Set LD_LIBRARY_PATH (Linux) | ||
|
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 |
---|---|---|
|
@@ -88,8 +88,9 @@ jobs: | |
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- name: Run cargo update | ||
run: cargo update | ||
# HACK(flip1995): This is here to install the correct toolchain | ||
- name: Print cargo version | ||
run: cargo -V | ||
|
||
# Run | ||
- name: Set LD_LIBRARY_PATH (Linux) | ||
|
@@ -149,8 +150,9 @@ jobs: | |
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- name: Run cargo update | ||
run: cargo update | ||
# HACK(flip1995): This is here to install the correct toolchain | ||
- name: Print cargo version | ||
run: cargo -V | ||
|
||
# Run | ||
- name: Build Integration Test | ||
|
@@ -207,8 +209,9 @@ jobs: | |
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- name: Run cargo update | ||
run: cargo update | ||
# HACK(flip1995): This is here to install the correct toolchain | ||
- name: Print cargo version | ||
run: cargo -V | ||
|
||
# Download | ||
- name: Download target dir | ||
|