-
Notifications
You must be signed in to change notification settings - Fork 451
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix CI - Regenerate proto files, and selective msrv-patching (#2159)
- Loading branch information
Showing
5 changed files
with
109 additions
and
56 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
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
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,14 +1,28 @@ | ||
#!/bin/bash | ||
|
||
function patch_version() { | ||
local latest_version=$(cargo search --limit 1 $1 | head -1 | cut -d'"' -f2) | ||
echo "patching $1 from $latest_version to $2" | ||
cargo update -p $1:$latest_version --precise $2 | ||
# Function to compare two version numbers | ||
function version_lt() { | ||
[ "$(printf '%s\n' "$1" "$2" | sort -V | head -n1)" != "$2" ] | ||
} | ||
|
||
patch_version cc 1.0.105 | ||
patch_version url 2.5.0 | ||
patch_version hyper-rustls 0.27.2 # 0.27.3 needs rustc v1.70.0 | ||
patch_version tokio-util 0.7.11 # 0.7.12 needs rustc v1.70.0 | ||
patch_version tokio-stream 0.1.15 # 0.1.16 needs rustc v1.70.0 | ||
patch_version tokio 1.38.0 # 1.39 needs msrv bump to rustc 1.70 | ||
# Get the current Rust compiler version | ||
rust_version=$(rustc --version | cut -d' ' -f2) | ||
|
||
# Target version (Rust 1.71.1) | ||
target_version="1.71.1" | ||
|
||
function patch_version() { | ||
local latest_version=$(cargo search --limit 1 $1 | head -1 | cut -d'"' -f2) | ||
echo "patching $1 from $latest_version to $2" | ||
cargo update -p $1:$latest_version --precise $2 | ||
} | ||
|
||
patch_version cc 1.0.105 | ||
patch_version url 2.5.0 | ||
if version_lt "$rust_version" "$target_version"; then | ||
patch_version tonic 0.12.2 | ||
patch_version hyper-rustls 0.27.2 # 0.27.3 needs rustc v1.70.0 | ||
patch_version tokio-util 0.7.11 # 0.7.12 needs rustc v1.70.0 | ||
patch_version tokio-stream 0.1.15 # 0.1.16 needs rustc v1.70.0 | ||
patch_version tokio 1.38.0 # 1.39 needs msrv bump to rustc 1.70 | ||
fi |