Skip to content

Commit 8cd1941

Browse files
Merge pull request #1321 from lukaszstolarczuk/ci-changes
Minor CI changes
2 parents 433fcb1 + fa17e30 commit 8cd1941

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/benchmarks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ on:
2424
description: Runner
2525
type: choice
2626
required: true
27-
default: 'L0_PERF'
27+
default: 'L0_PERF_PVC'
2828
options:
29-
- L0_PERF
29+
- L0_PERF_PVC
3030

3131
permissions:
3232
contents: read

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ jobs:
382382
--preset Minimal
383383
--exit-on-failure
384384
runner: 'L0_PERF_ARC'
385-
compatibility: 1
385+
compatibility: '1'
386386

387387
SYCL:
388388
uses: ./.github/workflows/reusable_sycl.yml

.github/workflows/reusable_benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ on:
2525
compatibility:
2626
required: false
2727
type: string
28-
default: 0
28+
default: '0'
2929
description: |
3030
Set it to 1 to run compatibility sycl benchmarks
3131

.github/workflows/reusable_sycl.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,11 @@ jobs:
2828
- name: Download llvm daily release
2929
run: |
3030
if [ "${{ matrix.llvm_tag }}" == "latest" ]; then
31-
llvm_tag=$(curl -s https://api.github.com/repos/intel/llvm/releases | awk -F'"' '/"tag_name":/ {print $4; exit}')
31+
llvm_tag=$(curl -s https://api.github.com/repos/intel/llvm/releases | awk -F'"' '/"tag_name": "nightly/ {print $4; exit}')
3232
else
3333
llvm_tag="${{ matrix.llvm_tag }}"
3434
fi
35+
echo "llvm tag: $llvm_tag"
3536
download_url="https://github.com/intel/llvm/releases/download/${llvm_tag}/sycl_linux.tar.gz"
3637
wget --no-verbose $download_url -O sycl_linux.tar.gz
3738

0 commit comments

Comments
 (0)