Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions devops/actions/run-tests/benchmark/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@ inputs:
type: string
required: False

env:
BENCHMARK_RESULTS_BRANCH: "sycl-benchmark-ci-results"

runs:
# composite actions don't make use of 'name', so copy-paste names as a comment in the first line of each step
using: "composite"
Expand Down Expand Up @@ -164,6 +161,14 @@ runs:
sudo cmake --install build

cd -
- name: Set env var for results branch
shell: bash
run: |
# Set env var for results branch
# Set BENCHMARK_RESULTS_BRANCH globally for all subsequent steps.
# This has to be done this way because of limits of composite actions.
BENCHMARK_RESULTS_BRANCH="sycl-benchmark-ci-results"
echo "BENCHMARK_RESULTS_BRANCH=$BENCHMARK_RESULTS_BRANCH" >> $GITHUB_ENV
- name: Checkout results repo
uses: actions/checkout@v5
with:
Expand Down
Loading