Skip to content

Commit 282a931

Browse files
authored
ci: revert to grpc v1.71.2 to reduce test flakiness (#16027)
1 parent 44efb79 commit 282a931

11 files changed

Lines changed: 15 additions & 15 deletions

ci/cloudbuild/dockerfiles/demo-debian-bookworm.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ RUN curl -fsSL https://github.com/google/re2/archive/2025-07-22.tar.gz | \
142142

143143
# ```bash
144144
WORKDIR /var/tmp/build/grpc
145-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.76.0.tar.gz | \
145+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \
146146
tar -xzf - --strip-components=1 && \
147147
cmake \
148148
-DCMAKE_BUILD_TYPE=Debug \

ci/cloudbuild/dockerfiles/demo-debian-bullseye.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ RUN curl -fsSL https://github.com/google/re2/archive/2025-07-22.tar.gz | \
104104

105105
# ```bash
106106
WORKDIR /var/tmp/build/grpc
107-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.76.0.tar.gz | \
107+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \
108108
tar -xzf - --strip-components=1 && \
109109
cmake \
110110
-DCMAKE_BUILD_TYPE=Debug \

ci/cloudbuild/dockerfiles/demo-rockylinux-9.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ RUN curl -fsSL https://github.com/google/re2/archive/2025-07-22.tar.gz | \
135135

136136
# ```bash
137137
WORKDIR /var/tmp/build/grpc
138-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.76.0.tar.gz | \
138+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \
139139
tar -xzf - --strip-components=1 && \
140140
cmake \
141141
-DCMAKE_CXX_STANDARD=17 \

ci/cloudbuild/dockerfiles/demo-ubuntu-24.04.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ RUN curl -fsSL https://github.com/google/re2/archive/2025-07-22.tar.gz | \
142142

143143
# ```bash
144144
WORKDIR /var/tmp/build/grpc
145-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.76.0.tar.gz | \
145+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \
146146
tar -xzf - --strip-components=1 && \
147147
cmake \
148148
-DCMAKE_BUILD_TYPE=Debug \

ci/cloudbuild/dockerfiles/demo-ubuntu-jammy.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v33.1.tar.gz
7373

7474
# ```bash
7575
WORKDIR /var/tmp/build/grpc
76-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.76.0.tar.gz | \
76+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \
7777
tar -xzf - --strip-components=1 && \
7878
cmake \
7979
-DCMAKE_BUILD_TYPE=Debug \

ci/cloudbuild/dockerfiles/fedora-latest-cmake.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24
160160

161161
WORKDIR /var/tmp/build/grpc
162162
RUN dnf makecache && dnf install -y c-ares-devel re2-devel
163-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.76.0.tar.gz | \
163+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \
164164
tar -xzf - --strip-components=1 && \
165165
cmake \
166166
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/fedora-latest-cxx20.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24
157157

158158
WORKDIR /var/tmp/build/grpc
159159
RUN dnf makecache && dnf install -y c-ares-devel re2-devel
160-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.76.0.tar.gz | \
160+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \
161161
tar -xzf - --strip-components=1 && \
162162
cmake \
163163
-DCMAKE_CXX_STANDARD=20 \

ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24
111111
ldconfig && cd /var/tmp && rm -fr build
112112

113113
WORKDIR /var/tmp/build/grpc
114-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.76.0.tar.gz | \
114+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \
115115
tar -xzf - --strip-components=1 && \
116116
cmake \
117117
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24
163163
ldconfig && cd /var/tmp && rm -fr build
164164

165165
WORKDIR /var/tmp/build/grpc
166-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.76.0.tar.gz | \
166+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \
167167
tar -xzf - --strip-components=1 && \
168168
cmake \
169169
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/ubuntu-22.04-install.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24
162162
ldconfig && cd /var/tmp && rm -fr build
163163

164164
WORKDIR /var/tmp/build/grpc
165-
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.76.0.tar.gz | \
165+
RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \
166166
tar -xzf - --strip-components=1 && \
167167
cmake \
168168
-DCMAKE_BUILD_TYPE=Release \

0 commit comments

Comments
 (0)