Skip to content

Commit 06a3015

Browse files
committed
Merge branch 'main' into cmake_find_third_party_cleanup
2 parents 94875f1 + 021490e commit 06a3015

37 files changed

+341
-10558
lines changed

.devcontainer/Dockerfile.dev

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

1010
ARG CXX_STANDARD=17
11-
ARG CMAKE_VERSION=3.31.6
1211

1312
ENV CXX_STANDARD=${CXX_STANDARD}
14-
ENV CMAKE_VERSION=${CMAKE_VERSION}
1513

1614
COPY ci /opt/ci
1715

@@ -20,9 +18,9 @@ RUN apt update && apt install -y wget \
2018
llvm-dev \
2119
libclang-dev \
2220
clang-tidy \
23-
shellcheck
21+
shellcheck \
22+
cmake
2423

25-
RUN cd /opt/ci && bash setup_cmake.sh
2624
RUN cd /opt/ci && bash setup_ci_environment.sh
2725
RUN cd /opt/ci && bash install_iwyu.sh
2826

.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
}
1716
},

.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)