Skip to content

Commit e7c35ff

Browse files
authored
[CI] Upgrade CI image to use Rapids 25.10 (#11796)
1 parent 0b67a40 commit e7c35ff

File tree

2 files changed

+2
-20
lines changed

2 files changed

+2
-20
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -76,24 +76,6 @@ jobs:
7676
--prefix cache/${{ github.run_id }}/build-cuda-with-rmm \
7777
build/testxgboost
7878
79-
build-cuda-with-rmm-dev:
80-
name: Build CUDA with RMM (dev)
81-
runs-on:
82-
- runs-on=${{ github.run_id }}
83-
- runner=linux-amd64-cpu
84-
- tag=main-build-cuda-with-rmm-dev
85-
steps:
86-
# Restart Docker daemon so that it recognizes the ephemeral disks
87-
- run: sudo systemctl restart docker
88-
- uses: actions/checkout@v4
89-
with:
90-
submodules: "true"
91-
- name: Log into Docker registry (AWS ECR)
92-
run: bash ops/pipeline/login-docker-registry.sh
93-
- run: |
94-
bash ops/pipeline/build-cuda.sh \
95-
xgb-ci.gpu_build_rockylinux8_dev_ver enable-rmm
96-
9779
build-python-wheels-arm64:
9880
name: Build manylinux_2_28_aarch64 wheel
9981
runs-on:

tests/python-gpu/test_from_cudf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ def test_invalid_meta() -> None:
405405
y = X.copy()
406406
y.iloc[0, 0] = None
407407
# check by the cuDF->cupy converter.
408-
with pytest.raises(ValueError, match="no nulls"):
408+
with pytest.raises(ValueError, match="Label contains NaN"):
409409
xgb.DMatrix(X, y)
410-
with pytest.raises(ValueError, match="no nulls"):
410+
with pytest.raises(ValueError, match="Label contains NaN"):
411411
xgb.QuantileDMatrix(X, y)

0 commit comments

Comments
 (0)