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 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