Skip to content

Commit 6f02e1e

Browse files
authored
Merge branch 'main' into merge_config_sampler_model
2 parents 1d307da + 1ca1480 commit 6f02e1e

33 files changed

+335
-10558
lines changed

.devcontainer/Dockerfile.dev

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,11 @@ ARG USER_GID=1000
88
ARG INSTALL_PACKAGES=
99

1010
ARG CXX_STANDARD=17
11-
ARG CMAKE_VERSION=3.31.6
1211
ARG ABSEIL_CPP_VERSION=20230125.3
1312
ARG PROTOBUF_VERSION=23.3
1413
ARG GRPC_VERSION=v1.55.0
1514

1615
ENV CXX_STANDARD=${CXX_STANDARD}
17-
ENV CMAKE_VERSION=${CMAKE_VERSION}
1816
ENV ABSEIL_CPP_VERSION=${ABSEIL_CPP_VERSION}
1917
ENV PROTOBUF_VERSION=${PROTOBUF_VERSION}
2018
ENV GRPC_VERSION=${GRPC_VERSION}
@@ -27,9 +25,9 @@ RUN apt update && apt install -y wget \
2725
libclang-dev \
2826
libcurl4-openssl-dev \
2927
clang-tidy \
30-
shellcheck
28+
shellcheck \
29+
cmake
3130

32-
RUN cd /opt/ci && bash setup_cmake.sh
3331
RUN cd /opt/ci && bash setup_ci_environment.sh
3432
RUN cd /opt/ci && bash install_iwyu.sh
3533
RUN cd /opt && bash ci/setup_googletest.sh \

.devcontainer/README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,6 @@
33
Customize your dev container using build arguments (for direct Docker builds) or
44
environment variables (for evaluation in `devcontainer.json`).
55

6-
* **CMake version:**
7-
The version of cmake to install. (Default: 3.31.6)
8-
* Docker ARG:
9-
`CMAKE_VERSION`
10-
* Host Environment Variable:
11-
`OTEL_CPP_DEVCONTAINER_CMAKE_VERSION`
12-
136
* **CXX standard:**
147
This is the C++ standard to build from (eg: 17, 20, ...). (Default: 17)
158
* Docker ARG:

.devcontainer/devcontainer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"USER_UID": "${localEnv:OTEL_CPP_DEVCONTAINER_USER_UID:1000}",
1212
"USER_GID": "${localEnv:OTEL_CPP_DEVCONTAINER_USER_GID:1000}",
1313
"INSTALL_PACKAGES": "${localEnv:OTEL_CPP_DEVCONTAINER_INSTALL_PACKAGES:}",
14-
"CMAKE_VERSION": "${localEnv:OTEL_CPP_DEVCONTAINER_CMAKE_VERSION:3.31.6}",
1514
"CXX_STANDARD": "${localEnv:OTEL_CPP_DEVCONTAINER_CXX_STANDARD:17}",
1615
"GRPC_VERSION": "${localEnv:OTEL_CPP_DEVCONTAINER_GRPC_VERSION:v1.55.0}",
1716
"PROTOBUF_VERSION": "${localEnv:OTEL_CPP_DEVCONTAINER_PROTOBUF_VERSION:23.3}",

.github/workflows/benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Harden the runner (Audit all outbound calls)
17-
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
17+
uses: step-security/harden-runner@002fdce3c6a235733a90a27c80493a3241e56863 # v2.12.1
1818
with:
1919
egress-policy: audit
2020

@@ -53,7 +53,7 @@ jobs:
5353
runs-on: ubuntu-latest
5454
steps:
5555
- name: Harden the runner (Audit all outbound calls)
56-
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
56+
uses: step-security/harden-runner@002fdce3c6a235733a90a27c80493a3241e56863 # v2.12.1
5757
with:
5858
egress-policy: audit
5959

0 commit comments

Comments
 (0)