From 9fd24b9520c1b5c96a05dafec7d6d89454b8bac4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Stolarczuk?= Date: Mon, 19 May 2025 14:38:01 +0200 Subject: [PATCH 1/2] [CI][Perf] Unify benchmark runners labels --- .github/workflows/benchmarks.yml | 4 ++-- .github/workflows/nightly.yml | 2 +- .github/workflows/reusable_benchmarks.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index 654fe409df..6f540ae393 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -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 diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 515300633b..6dc0704071 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -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 diff --git a/.github/workflows/reusable_benchmarks.yml b/.github/workflows/reusable_benchmarks.yml index 52319593bc..c45f53477b 100644 --- a/.github/workflows/reusable_benchmarks.yml +++ b/.github/workflows/reusable_benchmarks.yml @@ -25,7 +25,7 @@ on: compatibility: required: false type: string - default: 0 + default: '0' description: | Set it to 1 to run compatibility sycl benchmarks From fa17e3038ec711855d7fe835878d3e2476fb9905 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Stolarczuk?= Date: Mon, 19 May 2025 14:58:30 +0200 Subject: [PATCH 2/2] [CI] Update looking for nigthly sycl build look only for the actual nigthly releases. The "regular release" may be incompatible, as they may be in regard to older codebase. --- .github/workflows/reusable_sycl.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/reusable_sycl.yml b/.github/workflows/reusable_sycl.yml index 48d12d2f10..7752aa7d4c 100644 --- a/.github/workflows/reusable_sycl.yml +++ b/.github/workflows/reusable_sycl.yml @@ -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