Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,8 @@ jobs:
with:
build_type: pull-request
script: ci/test_cpp.sh
# https://github.com/rapidsai/cudf/issues/23498
matrix_filter: map(select(.GPU != "gb300" and .GPU != "gh200"))
conda-python-build:
needs: conda-cpp-build
permissions:
Expand Down Expand Up @@ -465,6 +467,8 @@ jobs:
with:
build_type: pull-request
script: "ci/test_python_cudf.sh"
# https://github.com/rapidsai/cudf/issues/23498
matrix_filter: map(select(.GPU != "gb300" and .GPU != "gh200"))
conda-python-other-tests:
# Tests for dask_cudf, cudf_polars, custreamz, cudf_kafka are separated for CI parallelism
needs: [conda-python-build-noarch, changed-files]
Expand All @@ -482,6 +486,8 @@ jobs:
# https://github.com/rapidsai/cudf/pull/22381/changes#r3196736965
container-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000"
script: "ci/test_python_other.sh"
# https://github.com/rapidsai/cudf/issues/23498
matrix_filter: map(select(.GPU != "gb300" and .GPU != "gh200"))
conda-java-tests:
needs: [conda-cpp-build, changed-files]
permissions:
Expand Down Expand Up @@ -601,6 +607,8 @@ jobs:
with:
build_type: pull-request
script: ci/test_wheel_cudf_streaming.sh
# https://github.com/rapidsai/cudf/issues/23498
matrix_filter: map(select(.GPU != "gb300" and .GPU != "gh200"))
wheel-build-pylibcudf:
needs: [checks, wheel-build-libcudf]
permissions:
Expand Down Expand Up @@ -651,6 +659,8 @@ jobs:
with:
build_type: pull-request
script: ci/test_wheel_cudf.sh
# https://github.com/rapidsai/cudf/issues/23498
matrix_filter: map(select(.GPU != "gb300" and .GPU != "gh200"))
wheel-build-cudf-polars:
needs: wheel-build-pylibcudf
permissions:
Expand Down Expand Up @@ -775,7 +785,8 @@ jobs:
if: (fromJSON(needs.changed-files.outputs.changed_file_groups).test_python_wheels || fromJSON(needs.changed-files.outputs.changed_file_groups).test_cudf_pandas) && fromJSON(needs.changed-files.outputs.changed_file_groups).neither_cudf_polars_nor_dask_cudf
with:
# This selects the latest supported Python + CUDA minor versions for each ARCH/CUDA major version combo
matrix_filter: group_by([(.ARCH), (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))]))
# Filter out GB300 due to https://github.com/rapidsai/cudf/issues/23498
matrix_filter: group_by([(.ARCH), (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))])) | map(select(.GPU != "gb300" and .GPU != "gh200"))
build_type: pull-request
script: ci/cudf_pandas_scripts/run_tests.sh
third-party-integration-tests-cudf-pandas:
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ jobs:
date: ${{ inputs.date }}
script: ci/test_cpp.sh
sha: ${{ inputs.sha }}
# https://github.com/rapidsai/cudf/issues/23498
matrix_filter: map(select(.GPU != "gb300" and .GPU != "gh200"))
conda-cpp-benchmark-tests:
permissions:
actions: read
Expand Down Expand Up @@ -121,6 +123,8 @@ jobs:
date: ${{ inputs.date }}
sha: ${{ inputs.sha }}
script: "ci/test_python_cudf.sh"
# https://github.com/rapidsai/cudf/issues/23498
matrix_filter: map(select(.GPU != "gb300" and .GPU != "gh200"))
conda-python-other-tests:
# Tests for dask_cudf, custreamz, cudf_kafka are separated for CI parallelism
permissions:
Expand All @@ -137,6 +141,8 @@ jobs:
date: ${{ inputs.date }}
sha: ${{ inputs.sha }}
script: "ci/test_python_other.sh"
# https://github.com/rapidsai/cudf/issues/23498
matrix_filter: map(select(.GPU != "gb300" and .GPU != "gh200"))
conda-java-tests:
permissions:
actions: read
Expand Down Expand Up @@ -218,6 +224,8 @@ jobs:
date: ${{ inputs.date }}
sha: ${{ inputs.sha }}
script: ci/cudf_pandas_scripts/run_tests.sh
# https://github.com/rapidsai/cudf/issues/23498
matrix_filter: map(select(.GPU != "gb300" and .GPU != "gh200"))
third-party-integration-tests-cudf-pandas:
permissions:
actions: read
Expand Down Expand Up @@ -271,6 +279,8 @@ jobs:
date: ${{ inputs.date }}
sha: ${{ inputs.sha }}
script: "ci/test_wheel_cudf_polars.sh"
# https://github.com/rapidsai/cudf/issues/23498
matrix_filter: map(select(.GPU != "gb300" and .GPU != "gh200"))
cudf-polars-polars-tests:
permissions:
actions: read
Expand All @@ -286,6 +296,8 @@ jobs:
date: ${{ inputs.date }}
sha: ${{ inputs.sha }}
script: "ci/test_cudf_polars_polars_tests.sh"
# https://github.com/rapidsai/cudf/issues/23498
matrix_filter: map(select(.GPU != "gb300" and .GPU != "gh200"))
narwhals-tests:
permissions:
actions: read
Expand Down
Loading