From 3f14f6f33d8d29f1f306ecd8cc61bb75b6fe77fd Mon Sep 17 00:00:00 2001 From: Weiqun Zhang Date: Sat, 27 Jan 2024 15:54:39 -0800 Subject: [PATCH] Disable SYCL on Nvidia and AMD CIs The Codeplay APT has stopped worked for a few weeks now. It fails with error messages like The following packages have unmet dependencies: oneapi-nvidia-12.0 : Depends: intel-basekit (>= 2024.0.2) but it is not going to be installed E: Unable to correct problems, you have held broken packages. Error: Process completed with exit code 1. To avoid confusion, let's disable them for now. --- .github/workflows/intel.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/intel.yml b/.github/workflows/intel.yml index e251612b599..fc5697d99e4 100644 --- a/.github/workflows/intel.yml +++ b/.github/workflows/intel.yml @@ -97,6 +97,7 @@ jobs: tests-oneapi-sycl-eb-nvidia: name: oneAPI SYCL for Nvidia GPUs [tests w/ EB] runs-on: ubuntu-latest + if: 0 steps: - uses: actions/checkout@v4 - name: Dependencies @@ -143,6 +144,7 @@ jobs: no-tests-oneapi-sycl-amd: name: oneAPI SYCL for AMD GPUs runs-on: ubuntu-20.04 + if: 0 steps: - uses: actions/checkout@v4 - name: Dependencies