-
Notifications
You must be signed in to change notification settings - Fork 1.7k
rust: update msrv to 1.85 #15060
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
Closed
Closed
rust: update msrv to 1.85 #15060
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
3b797f3
github-ci: cleanups to almalinux minimal build
jasonish 2049cd6
github-ci: break ubuntu/debian script into 2 scripts
jasonish 85890a6
rust: set minimum rust version to 1.85
jasonish 8e4e235
rust: disable clippy warning for manual c str literals
jasonish 6846bc5
github-ci: update rust vars job to rust 1.85
jasonish a03062a
github-ci/nix: update to nixos-25.11
jasonish d49dbbf
github-ci/formatting: update to rust 1.89
jasonish 57419a1
github-ci/scan-build: update to rust 1.85
jasonish ece0e4a
github-ci/commits: update to ubuntu 24.04; rust 1.89
jasonish ffb3a92
github-ci/docs: use rust 1.89
jasonish 1f2bbd4
github-ci/builds: update ubuntu builds to rust 1.89
jasonish File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -17,7 +17,7 @@ jobs: | |
| check-commits: | ||
| name: Commit Check | ||
| runs-on: ubuntu-latest | ||
| container: ubuntu:20.04 | ||
| container: ubuntu:24.04 | ||
| steps: | ||
| - name: Caching ~/.cargo | ||
| uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb | ||
|
|
@@ -32,7 +32,7 @@ jobs: | |
| build-essential \ | ||
| autoconf \ | ||
| automake \ | ||
| cargo \ | ||
| cargo-1.89 \ | ||
| curl \ | ||
| git \ | ||
| jq \ | ||
|
|
@@ -52,17 +52,16 @@ jobs: | |
| libjansson-dev \ | ||
| libevent-dev \ | ||
| libevent-pthreads-2.1-7 \ | ||
| libpython2.7 \ | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should we remove all these obsolete libpython2 ? |
||
| libssl-dev \ | ||
| make \ | ||
| parallel \ | ||
| pkg-config \ | ||
| python3-yaml \ | ||
| rustc \ | ||
| software-properties-common \ | ||
| zlib1g \ | ||
| zlib1g-dev | ||
| - run: echo "$HOME/.cargo/bin" >> $GITHUB_PATH | ||
| - run: echo "/usr/lib/rust-1.89/bin" >> $GITHUB_PATH | ||
| - name: Installing sccache | ||
| run: | | ||
| (cd /tmp && curl -OL https://github.com/mozilla/sccache/releases/download/0.2.13/sccache-0.2.13-x86_64-unknown-linux-musl.tar.gz) | ||
|
|
||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I wonder if we could remove some builders because they do not bring any value...
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.
Yeah, probably. Killed one off a couple weeks ago as its just required a few lines added to another similar build. Probably many more like this.
But this one tests documentation as well for a popular distro, so some are hard to get rid off, even if they don't do much different than another build.
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.
That was a general idea, not criticizing this PR