We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1b5611 commit 5642d1cCopy full SHA for 5642d1c
.github/workflows/benchmark.yml
@@ -11,7 +11,7 @@ permissions:
11
jobs:
12
benchmark:
13
name: Run OpenTelemetry-cpp benchmarks
14
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-latest
15
steps:
16
- uses: actions/checkout@v3
17
with:
@@ -30,7 +30,7 @@ jobs:
30
- name: Run benchmark
31
id: run_benchmarks
32
run: |
33
- ci/do_ci.sh bazel.benchmark
+ CC=/usr/bin/gcc-10 CXX=/usr/bin/g++-10 ci/do_ci.sh bazel.benchmark
34
mkdir -p benchmarks
35
mv api-benchmark_result.json benchmarks
36
mv sdk-benchmark_result.json benchmarks
@@ -45,7 +45,7 @@ jobs:
45
matrix:
46
components: ["api", "sdk", "exporters"]
47
name: Store benchmark result
48
49
50
51
- uses: actions/download-artifact@master
0 commit comments