-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Compiling the windows-sys package says: package `windows-sys v0.59.0` cannot be built because it requires rustc 1.60 or newer, while the currently active rustc version is 1.56.1 Oh well, if we're bumping the MSRV anyway ...
- Loading branch information
Showing
4 changed files
with
19 additions
and
19 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 |
---|---|---|
|
@@ -2,39 +2,39 @@ | |
{ | ||
"env": {"CARGO_TERM_COLOR": "always"}, | ||
"jobs": { | ||
"native-1-56-1": { | ||
"native-1-60-0": { | ||
"runs-on": "ubuntu-latest", | ||
"steps": [ | ||
{"uses": "actions/[email protected]"}, | ||
{ | ||
"name": "Install toolchain", | ||
"run": "rustup toolchain install 1.56.1\nrustup target add x86_64-unknown-linux-gnu --toolchain 1.56.1\n" | ||
"run": "rustup toolchain install 1.60.0\nrustup target add x86_64-unknown-linux-gnu --toolchain 1.60.0\n" | ||
}, | ||
{ | ||
"name": "Build", | ||
"run": "cargo +1.56.1 build --target x86_64-unknown-linux-gnu --verbose" | ||
"run": "cargo +1.60.0 build --target x86_64-unknown-linux-gnu --verbose" | ||
}, | ||
{ | ||
"name": "Run tests", | ||
"run": "cargo +1.56.1 test --target x86_64-unknown-linux-gnu --verbose" | ||
"run": "cargo +1.60.0 test --target x86_64-unknown-linux-gnu --verbose" | ||
} | ||
] | ||
}, | ||
"native-1-69-0": { | ||
"native-1-70-0": { | ||
"runs-on": "ubuntu-latest", | ||
"steps": [ | ||
{"uses": "actions/[email protected]"}, | ||
{ | ||
"name": "Install toolchain", | ||
"run": "rustup toolchain install 1.69.0\nrustup target add x86_64-unknown-linux-gnu --toolchain 1.69.0\n" | ||
"run": "rustup toolchain install 1.70.0\nrustup target add x86_64-unknown-linux-gnu --toolchain 1.70.0\n" | ||
}, | ||
{ | ||
"name": "Build", | ||
"run": "cargo +1.69.0 build --target x86_64-unknown-linux-gnu --verbose" | ||
"run": "cargo +1.70.0 build --target x86_64-unknown-linux-gnu --verbose" | ||
}, | ||
{ | ||
"name": "Run tests", | ||
"run": "cargo +1.69.0 test --target x86_64-unknown-linux-gnu --verbose" | ||
"run": "cargo +1.70.0 test --target x86_64-unknown-linux-gnu --verbose" | ||
} | ||
] | ||
}, | ||
|
@@ -80,11 +80,11 @@ | |
{"uses": "actions/[email protected]"}, | ||
{ | ||
"name": "Install toolchain", | ||
"run": "rustup toolchain install 1.56.1\nrustup target add x86_64-fortanix-unknown-sgx --toolchain 1.56.1\n" | ||
"run": "rustup toolchain install 1.60.0\nrustup target add x86_64-fortanix-unknown-sgx --toolchain 1.60.0\n" | ||
}, | ||
{ | ||
"name": "Build", | ||
"run": "cargo +1.56.1 build --target x86_64-fortanix-unknown-sgx --verbose" | ||
"run": "cargo +1.60.0 build --target x86_64-fortanix-unknown-sgx --verbose" | ||
} | ||
] | ||
}, | ||
|
@@ -94,11 +94,11 @@ | |
{"uses": "actions/[email protected]"}, | ||
{ | ||
"name": "Install toolchain", | ||
"run": "rustup toolchain install 1.56.1\nrustup target add wasm32-unknown-unknown --toolchain 1.56.1\n" | ||
"run": "rustup toolchain install 1.60.0\nrustup target add wasm32-unknown-unknown --toolchain 1.60.0\n" | ||
}, | ||
{ | ||
"name": "Build", | ||
"run": "cargo +1.56.1 build --target wasm32-unknown-unknown --verbose" | ||
"run": "cargo +1.60.0 build --target wasm32-unknown-unknown --verbose" | ||
} | ||
] | ||
} | ||
|
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# This file is generated from build.rcl. | ||
[toolchain] | ||
channel = "1.56.1" | ||
channel = "1.60.0" |