Skip to content

Commit 8d3aea8

Browse files
committed
[CI][Benchmarks] Fix pushing results to new branch
1 parent 92a006c commit 8d3aea8

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

devops/actions/run-tests/benchmark/action.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,6 @@ inputs:
3737
type: string
3838
required: False
3939

40-
env:
41-
BENCHMARK_RESULTS_BRANCH: "sycl-benchmark-ci-results"
42-
4340
runs:
4441
# composite actions don't make use of 'name', so copy-paste names as a comment in the first line of each step
4542
using: "composite"
@@ -164,6 +161,14 @@ runs:
164161
sudo cmake --install build
165162
166163
cd -
164+
- name: Set env var for results branch
165+
shell: bash
166+
run: |
167+
# Set env var for results branch
168+
# Set BENCHMARK_RESULTS_BRANCH globally for all subsequent steps.
169+
# This has to be done this way because of limits of composite actions.
170+
BENCHMARK_RESULTS_BRANCH="sycl-benchmark-ci-results"
171+
echo "BENCHMARK_RESULTS_BRANCH=$BENCHMARK_RESULTS_BRANCH" >> $GITHUB_ENV
167172
- name: Checkout results repo
168173
uses: actions/checkout@v5
169174
with:

0 commit comments

Comments
 (0)