Skip to content

Commit 7ec8ace

Browse files
Disable RockyLinux Tests for DGL, Disable CUDA All 11.4 Tests (#89)
Disables RockyLinux tests for DGL due to GLIBCXX version issues. Disables 11.4 tests since they are incompatible with PyTorch. Authors: - Alex Barghi (https://github.com/alexbarghi-nv) Approvers: - James Lamb (https://github.com/jameslamb) URL: #89
1 parent 466b5b9 commit 7ec8ace

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
date: ${{ inputs.date }}
5050
sha: ${{ inputs.sha }}
5151
script: ci/test_wheel_pylibwholegraph.sh
52-
matrix_filter: map(select(.ARCH == "amd64"))
52+
matrix_filter: map(select((.ARCH == "amd64") and (.CUDA_VER | startswith("11.4") | not)))
5353
wheel-tests-cugraph-dgl:
5454
secrets: inherit
5555
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
@@ -59,7 +59,7 @@ jobs:
5959
date: ${{ inputs.date }}
6060
sha: ${{ inputs.sha }}
6161
script: ci/test_wheel_cugraph-dgl.sh
62-
matrix_filter: map(select(.ARCH == "amd64"))
62+
matrix_filter: map(select((.ARCH == "amd64") and (.CUDA_VER | startswith("11.4") | not) and (.LINUX_VER != "rockylinux8")))
6363
wheel-tests-cugraph-pyg:
6464
secrets: inherit
6565
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
@@ -69,4 +69,4 @@ jobs:
6969
date: ${{ inputs.date }}
7070
sha: ${{ inputs.sha }}
7171
script: ci/test_wheel_cugraph-pyg.sh
72-
matrix_filter: map(select(.ARCH == "amd64"))
72+
matrix_filter: map(select((.ARCH == "amd64") and (.CUDA_VER | startswith("11.4") | not)))

0 commit comments

Comments
 (0)