-
Notifications
You must be signed in to change notification settings - Fork 723
Bump MSRV to 1.63 for I/O safety #1862
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
Signed-off-by: Alex Saveau <[email protected]>
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,7 +9,7 @@ env: | |
| RUSTDOCFLAGS: -D warnings | ||
| TOOL: cargo | ||
| # The MSRV | ||
| TOOLCHAIN: 1.56.1 | ||
| TOOLCHAIN: 1.63 | ||
| ZFLAGS: | ||
|
|
||
| # Tests that don't require executing the build binaries | ||
|
|
@@ -140,23 +140,24 @@ task: | |
| matrix: | ||
| - name: Linux aarch64 | ||
| arm_container: | ||
| image: rust:1.56 | ||
| image: rust:1.63 | ||
| env: | ||
| RUSTFLAGS: --cfg graviton -D warnings | ||
| TARGET: aarch64-unknown-linux-gnu | ||
| - name: Linux x86_64 | ||
| container: | ||
| image: rust:1.56 | ||
| image: rust:1.63 | ||
| env: | ||
| TARGET: x86_64-unknown-linux-gnu | ||
| - name: Linux x86_64 musl | ||
| container: | ||
| image: rust:1.56 | ||
| image: rust:1.63 | ||
| env: | ||
| TARGET: x86_64-unknown-linux-musl | ||
| setup_script: | ||
| - rustup target add $TARGET | ||
| - rustup component add clippy | ||
| - rustup toolchain install $TOOLCHAIN --profile minimal --target $TARGET | ||
|
||
| - rustup component add --toolchain $TOOLCHAIN clippy | ||
| << : *TEST | ||
| before_cache_script: rm -rf $CARGO_HOME/registry/index | ||
|
|
||
|
|
@@ -176,7 +177,7 @@ task: | |
| # Tasks for cross-compiling, but no testing | ||
| task: | ||
| container: | ||
| image: rust:1.56 | ||
| image: rust:1.63 | ||
| env: | ||
| BUILD: check | ||
| HOST: x86_64-unknown-linux-gnu | ||
|
|
@@ -250,7 +251,7 @@ task: | |
|
|
||
| task: | ||
| container: | ||
| image: rust:1.56 | ||
| image: rust:1.63 | ||
| env: | ||
| BUILD: check | ||
| name: Redox x86_64 | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make this change and I don't think you'll need to reinstall the toolchain on line 159 below.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds good, fixed.