Skip to content

Minor CI changes #1321

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 20, 2025
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ on:
description: Runner
type: choice
required: true
default: 'L0_PERF'
default: 'L0_PERF_PVC'
options:
- L0_PERF
- L0_PERF_PVC

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ jobs:
--preset Minimal
--exit-on-failure
runner: 'L0_PERF_ARC'
compatibility: 1
compatibility: '1'

SYCL:
uses: ./.github/workflows/reusable_sycl.yml
2 changes: 1 addition & 1 deletion .github/workflows/reusable_benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ on:
compatibility:
required: false
type: string
default: 0
default: '0'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix also passed compatibility argument in the sycl compat nightly job, please

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

for a reason this was not considered an issue in my linter, but changed it for unity - thx!

description: |
Set it to 1 to run compatibility sycl benchmarks

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/reusable_sycl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ jobs:
- name: Download llvm daily release
run: |
if [ "${{ matrix.llvm_tag }}" == "latest" ]; then
llvm_tag=$(curl -s https://api.github.com/repos/intel/llvm/releases | awk -F'"' '/"tag_name":/ {print $4; exit}')
llvm_tag=$(curl -s https://api.github.com/repos/intel/llvm/releases | awk -F'"' '/"tag_name": "nightly/ {print $4; exit}')
else
llvm_tag="${{ matrix.llvm_tag }}"
fi
echo "llvm tag: $llvm_tag"
download_url="https://github.com/intel/llvm/releases/download/${llvm_tag}/sycl_linux.tar.gz"
wget --no-verbose $download_url -O sycl_linux.tar.gz

Expand Down
Loading