diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 99a106cce..7c5a41255 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -77,13 +77,16 @@ jobs: # 64 bit int cmake ${SHARED_OPT} -DBUILD_INDEX64=on -B lapack/build64 cmake --build lapack/build64 ${PARALLEL} --target install - - name: Install oneapi + - name: Install compiler if: steps.domain_check.outputs.result == 'true' - uses: rscohn2/setup-oneapi@2ad0cf6b74bc2426bdcee825cf88f9db719dd727 # v0.1.0 - with: - components: | - icx@2024.1.0 - mkl@2024.1.0 + run: | + wget https://registrationcenter-download.intel.com/akdlm/IRC_NAS/ac92f2bb-4818-4e53-a432-f8b34d502f23/intel-dpcpp-cpp-compiler-2025.0.0.740_offline.sh + sudo bash intel-dpcpp-cpp-compiler-2025.0.0.740_offline.sh -s -a -s action install --eula accept + - name: Install MKL + if: steps.domain_check.outputs.result == 'true' + run: | + wget https://registrationcenter-download.intel.com/akdlm/IRC_NAS/79153e0f-74d7-45af-b8c2-258941adf58a/intel-onemkl-2025.0.0.940_offline.sh + sudo bash intel-onemkl-2025.0.0.940_offline.sh -s -a -s action install --eula accept - name: Configure/Build for a domain if: steps.domain_check.outputs.result == 'true' run: |