diff --git a/.github/actions/install-dpcpp/action.yml b/.github/actions/install-dpcpp/action.yml index 59f82ad3e0..dd07464258 100644 --- a/.github/actions/install-dpcpp/action.yml +++ b/.github/actions/install-dpcpp/action.yml @@ -19,7 +19,7 @@ runs: if: inputs.DPCPP_RELEASE == 'NIGHTLY' shell: bash run: | - sudo apt update && sudo apt install -y intel-opencl-icd + sudo apt update && sudo apt install -y intel-opencl-icd ocl-icd-opencl-dev dpkg -l | grep libhwloc15 > /dev/null || sudo apt install -y libhwloc15 export DPCPP_PATH=${{ inputs.DPCPP_PATH }} mkdir -p $DPCPP_PATH diff --git a/.github/workflows/intel_pvc_test.yml b/.github/workflows/intel_pvc_test.yml index 0e959b0580..6d90108924 100644 --- a/.github/workflows/intel_pvc_test.yml +++ b/.github/workflows/intel_pvc_test.yml @@ -23,7 +23,9 @@ jobs: run-tests: strategy: matrix: - compiler: [ NIGHTLY, RELEASE ] +# Disable the release check due to an issue with IGC versions 2.7 to 2.10.8. +# compiler: [ NIGHTLY, RELEASE ] + compiler: [ NIGHTLY ] name: Run Intel PVC tests runs-on: cp-gpumax-1100-gpu timeout-minutes: 30