-
Notifications
You must be signed in to change notification settings - Fork 440
ci: revert to grpc v1.71.2 to reduce test flakiness #16027
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -615,7 +615,7 @@ sudo ldconfig | |
|
|
||
| ```bash | ||
| mkdir -p $HOME/Downloads/grpc && cd $HOME/Downloads/grpc | ||
| curl -fsSL https://github.com/grpc/grpc/archive/v1.76.0.tar.gz | \ | ||
| curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \ | ||
|
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. Similar to the Dockerfiles, the gRPC version is hardcoded multiple times in this documentation file. This can lead to inconsistencies if a version is missed during an update. Consider using a placeholder for the version number (e.g., References
|
||
| tar -xzf - --strip-components=1 && \ | ||
| cmake \ | ||
| -DCMAKE_BUILD_TYPE=Debug \ | ||
|
|
@@ -718,7 +718,7 @@ Platform proto files. We install it using: | |
|
|
||
| ```bash | ||
| mkdir -p $HOME/Downloads/grpc && cd $HOME/Downloads/grpc | ||
| curl -fsSL https://github.com/grpc/grpc/archive/v1.76.0.tar.gz | \ | ||
| curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \ | ||
| tar -xzf - --strip-components=1 && \ | ||
| cmake \ | ||
| -DCMAKE_BUILD_TYPE=Debug \ | ||
|
|
@@ -930,7 +930,7 @@ sudo ldconfig | |
|
|
||
| ```bash | ||
| mkdir -p $HOME/Downloads/grpc && cd $HOME/Downloads/grpc | ||
| curl -fsSL https://github.com/grpc/grpc/archive/v1.76.0.tar.gz | \ | ||
| curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \ | ||
| tar -xzf - --strip-components=1 && \ | ||
| cmake \ | ||
| -DCMAKE_BUILD_TYPE=Debug \ | ||
|
|
@@ -1065,7 +1065,7 @@ sudo ldconfig | |
|
|
||
| ```bash | ||
| mkdir -p $HOME/Downloads/grpc && cd $HOME/Downloads/grpc | ||
| curl -fsSL https://github.com/grpc/grpc/archive/v1.76.0.tar.gz | \ | ||
| curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \ | ||
| tar -xzf - --strip-components=1 && \ | ||
| cmake \ | ||
| -DCMAKE_BUILD_TYPE=Debug \ | ||
|
|
@@ -1248,7 +1248,7 @@ install it using: | |
|
|
||
| ```bash | ||
| mkdir -p $HOME/Downloads/grpc && cd $HOME/Downloads/grpc | ||
| curl -fsSL https://github.com/grpc/grpc/archive/v1.76.0.tar.gz | \ | ||
| curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \ | ||
| tar -xzf - --strip-components=1 && \ | ||
| cmake \ | ||
| -DCMAKE_CXX_STANDARD=17 \ | ||
|
|
||
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.
To improve maintainability and align with the repository's style guide, consider defining the gRPC version in an
ARG. The version string is duplicated across many Dockerfiles, making updates tedious and error-prone.For example:
ARG GRPC_VERSION=v1.71.2at the top of the file.RUN curl -fsSL https://github.com/grpc/grpc/archive/${GRPC_VERSION}.tar.gz | \This would make future version updates much simpler.
References
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.
+1 to this, although not in scope of this PR.