Skip to content

Commit 8ef1a91

Browse files
committed
update dockerfiles
1 parent 2ca3e7c commit 8ef1a91

15 files changed

+29
-29
lines changed

ci/cloudbuild/dockerfiles/demo-alpine-stable.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,14 @@ RUN apk update && \
7171

7272
# ```bash
7373
WORKDIR /var/tmp/build/opentelemetry-cpp
74-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.20.0.tar.gz | \
74+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24.0.tar.gz | \
7575
tar -xzf - --strip-components=1 && \
7676
cmake \
7777
-DCMAKE_BUILD_TYPE=Release \
7878
-DCMAKE_CXX_STANDARD=17 \
7979
-DBUILD_SHARED_LIBS=yes \
8080
-DWITH_EXAMPLES=OFF \
81-
-DWITH_STL=CXX14 \
81+
-DWITH_STL=CXX17 \
8282
-DWITH_ABSEIL=ON \
8383
-DBUILD_TESTING=OFF \
8484
-DOPENTELEMETRY_INSTALL=ON \

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,14 @@ RUN curl -fsSL https://github.com/google/crc32c/archive/1.1.2.tar.gz | \
8888

8989
# ```bash
9090
WORKDIR /var/tmp/build/opentelemetry-cpp
91-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.20.0.tar.gz | \
91+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24.0.tar.gz | \
9292
tar -xzf - --strip-components=1 && \
9393
cmake \
9494
-DCMAKE_BUILD_TYPE=Release \
9595
-DCMAKE_CXX_STANDARD=17 \
9696
-DBUILD_SHARED_LIBS=yes \
9797
-DWITH_EXAMPLES=OFF \
98-
-DWITH_STL=CXX14 \
98+
-DWITH_STL=CXX17 \
9999
-DWITH_ABSEIL=ON \
100100
-DBUILD_TESTING=OFF \
101101
-DOPENTELEMETRY_INSTALL=ON \

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,14 +155,14 @@ RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.74.1.tar.gz | \
155155

156156
# ```bash
157157
WORKDIR /var/tmp/build/opentelemetry-cpp
158-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.20.0.tar.gz | \
158+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24.0.tar.gz | \
159159
tar -xzf - --strip-components=1 && \
160160
cmake \
161161
-DCMAKE_BUILD_TYPE=Release \
162162
-DCMAKE_CXX_STANDARD=17 \
163163
-DBUILD_SHARED_LIBS=yes \
164164
-DWITH_EXAMPLES=OFF \
165-
-DWITH_STL=CXX14 \
165+
-DWITH_STL=CXX17 \
166166
-DWITH_ABSEIL=ON \
167167
-DBUILD_TESTING=OFF \
168168
-DOPENTELEMETRY_INSTALL=ON \

ci/cloudbuild/dockerfiles/demo-fedora.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,14 +79,14 @@ ENV PKG_CONFIG_PATH=/usr/local/share/pkgconfig:/usr/lib64/pkgconfig:/usr/local/l
7979

8080
# ```bash
8181
WORKDIR /var/tmp/build/opentelemetry-cpp
82-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.20.0.tar.gz | \
82+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24.0.tar.gz | \
8383
tar -xzf - --strip-components=1 && \
8484
cmake \
8585
-DCMAKE_BUILD_TYPE=Release \
8686
-DCMAKE_CXX_STANDARD=17 \
8787
-DBUILD_SHARED_LIBS=yes \
8888
-DWITH_EXAMPLES=OFF \
89-
-DWITH_STL=CXX14 \
89+
-DWITH_STL=CXX17 \
9090
-DWITH_ABSEIL=ON \
9191
-DBUILD_TESTING=OFF \
9292
-DOPENTELEMETRY_INSTALL=ON \

ci/cloudbuild/dockerfiles/demo-opensuse-leap.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ ENV PATH=/usr/local/bin:${PATH}
5959

6060
# ```bash
6161
WORKDIR /var/tmp/build/opentelemetry-cpp
62-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.20.0.tar.gz | \
62+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24.0.tar.gz | \
6363
tar -xzf - --strip-components=1 && \
6464
cmake \
6565
-DCMAKE_BUILD_TYPE=Release \
6666
-DCMAKE_CXX_STANDARD=17 \
6767
-DBUILD_SHARED_LIBS=yes \
6868
-DWITH_EXAMPLES=OFF \
69-
-DWITH_STL=CXX14 \
69+
-DWITH_STL=CXX17 \
7070
-DWITH_ABSEIL=ON \
7171
-DBUILD_TESTING=OFF \
7272
-DOPENTELEMETRY_INSTALL=ON \

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,14 +201,14 @@ RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
201201

202202
# ```bash
203203
WORKDIR /var/tmp/build/opentelemetry-cpp
204-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.20.0.tar.gz | \
204+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24.0.tar.gz | \
205205
tar -xzf - --strip-components=1 && \
206206
cmake \
207207
-DCMAKE_BUILD_TYPE=Release \
208208
-DCMAKE_CXX_STANDARD=17 \
209209
-DBUILD_SHARED_LIBS=yes \
210210
-DWITH_EXAMPLES=OFF \
211-
-DWITH_STL=CXX14 \
211+
-DWITH_STL=CXX17 \
212212
-DWITH_ABSEIL=ON \
213213
-DBUILD_TESTING=OFF \
214214
-DOPENTELEMETRY_INSTALL=ON \

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,13 @@ RUN curl -fsSL https://github.com/google/crc32c/archive/1.1.2.tar.gz | \
9393

9494
# ```bash
9595
WORKDIR /var/tmp/build/opentelemetry-cpp
96-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.20.0.tar.gz | \
96+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24.0.tar.gz | \
9797
tar -xzf - --strip-components=1 && \
9898
cmake \
9999
-DCMAKE_BUILD_TYPE=Release \
100100
-DBUILD_SHARED_LIBS=yes \
101101
-DWITH_EXAMPLES=OFF \
102-
-DWITH_STL=CXX14 \
102+
-DWITH_STL=CXX17 \
103103
-DWITH_ABSEIL=ON \
104104
-DBUILD_TESTING=OFF \
105105
-DOPENTELEMETRY_INSTALL=ON \

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,14 +168,14 @@ RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
168168

169169
# ```bash
170170
WORKDIR /var/tmp/build/opentelemetry-cpp
171-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.20.0.tar.gz | \
171+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24.0.tar.gz | \
172172
tar -xzf - --strip-components=1 && \
173173
cmake \
174174
-DCMAKE_BUILD_TYPE=Release \
175175
-DCMAKE_CXX_STANDARD=17 \
176176
-DBUILD_SHARED_LIBS=yes \
177177
-DWITH_EXAMPLES=OFF \
178-
-DWITH_STL=CXX14 \
178+
-DWITH_STL=CXX17 \
179179
-DWITH_ABSEIL=ON \
180180
-DBUILD_TESTING=OFF \
181181
-DOPENTELEMETRY_INSTALL=ON \

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,14 +149,14 @@ RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
149149

150150
# ```bash
151151
WORKDIR /var/tmp/build/opentelemetry-cpp
152-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.20.0.tar.gz | \
152+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24.0.tar.gz | \
153153
tar -xzf - --strip-components=1 && \
154154
cmake \
155155
-DCMAKE_BUILD_TYPE=Release \
156156
-DCMAKE_CXX_STANDARD=17 \
157157
-DBUILD_SHARED_LIBS=yes \
158158
-DWITH_EXAMPLES=OFF \
159-
-DWITH_STL=CXX14 \
159+
-DWITH_STL=CXX17 \
160160
-DWITH_ABSEIL=ON \
161161
-DBUILD_TESTING=OFF \
162162
-DOPENTELEMETRY_INSTALL=ON \

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,15 +141,15 @@ RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v31.1.tar.gz
141141
ldconfig && cd /var/tmp && rm -fr build
142142

143143
WORKDIR /var/tmp/build/
144-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.20.0.tar.gz | \
144+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24.0.tar.gz | \
145145
tar -xzf - --strip-components=1 && \
146146
cmake \
147147
-DCMAKE_CXX_STANDARD=17 \
148148
-DCMAKE_BUILD_TYPE=Release \
149149
-DCMAKE_POSITION_INDEPENDENT_CODE=TRUE \
150150
-DBUILD_SHARED_LIBS=ON \
151151
-DWITH_EXAMPLES=OFF \
152-
-DWITH_STL=CXX14 \
152+
-DWITH_STL=CXX17 \
153153
-DWITH_ABSEIL=ON \
154154
-DBUILD_TESTING=OFF \
155155
-DOPENTELEMETRY_INSTALL=ON \

0 commit comments

Comments
 (0)