Skip to content

Commit 386109d

Browse files
authored
Temporarily drop xgboost from CI (#7526)
Dropping xgboost from our CI for now while upstream builds are fixed. Stopgap for #7520. Supersedes #7523. Authors: - Jim Crist-Harif (https://github.com/jcrist) Approvers: - https://github.com/jakirkham URL: #7526
1 parent 45e220d commit 386109d

File tree

7 files changed

+19
-24
lines changed

7 files changed

+19
-24
lines changed

ci/test_notebooks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ rapids-logger "notebook tests cuml"
3737

3838
# Add notebooks that should be skipped here
3939
# (space-separated list of filenames without paths)
40-
SKIPNBS="cuml_benchmarks.ipynb hdbscan_soft_clustering_benchmark.ipynb"
40+
SKIPNBS="cuml_benchmarks.ipynb hdbscan_soft_clustering_benchmark.ipynb forest_inference_demo.ipynb target_encoder_walkthrough.ipynb"
4141
NBTEST="$(realpath "$(dirname "$0")/utils/nbtest.sh")"
4242

4343
cd notebooks

conda/environments/all_cuda-129_arch-aarch64.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ dependencies:
6565
- rapids-build-backend>=0.4.0,<0.5.0.dev0
6666
- rapids-dask-dependency==25.12.*,>=0.0.0a0
6767
- rapids-logger==0.2.*,>=0.0.0a0
68-
- rapids-xgboost==25.12.*,>=0.0.0a0
6968
- recommonmark
7069
- rich
7170
- rmm==25.12.*,>=0.0.0a0

conda/environments/all_cuda-129_arch-x86_64.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ dependencies:
6565
- rapids-build-backend>=0.4.0,<0.5.0.dev0
6666
- rapids-dask-dependency==25.12.*,>=0.0.0a0
6767
- rapids-logger==0.2.*,>=0.0.0a0
68-
- rapids-xgboost==25.12.*,>=0.0.0a0
6968
- recommonmark
7069
- rich
7170
- rmm==25.12.*,>=0.0.0a0

conda/environments/all_cuda-130_arch-aarch64.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ dependencies:
6565
- rapids-build-backend>=0.4.0,<0.5.0.dev0
6666
- rapids-dask-dependency==25.12.*,>=0.0.0a0
6767
- rapids-logger==0.2.*,>=0.0.0a0
68-
- rapids-xgboost==25.12.*,>=0.0.0a0
6968
- recommonmark
7069
- rich
7170
- rmm==25.12.*,>=0.0.0a0

conda/environments/all_cuda-130_arch-x86_64.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ dependencies:
6565
- rapids-build-backend>=0.4.0,<0.5.0.dev0
6666
- rapids-dask-dependency==25.12.*,>=0.0.0a0
6767
- rapids-logger==0.2.*,>=0.0.0a0
68-
- rapids-xgboost==25.12.*,>=0.0.0a0
6968
- recommonmark
7069
- rich
7170
- rmm==25.12.*,>=0.0.0a0

dependencies.yaml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ files:
3535
- rapids_build_backend
3636
- test_python
3737
- test_python_dask
38-
- test_python_xgboost
38+
# - test_python_xgboost
3939
devcontainers:
4040
output: none
4141
includes:
@@ -124,7 +124,7 @@ files:
124124
- depends_on_libcuml
125125
- py_version
126126
- test_python
127-
- test_python_xgboost
127+
# - test_python_xgboost
128128
test_python_dask:
129129
output: none
130130
includes:
@@ -133,7 +133,7 @@ files:
133133
- depends_on_libcuml
134134
- py_version
135135
- test_python
136-
- test_python_xgboost
136+
# - test_python_xgboost
137137
- test_python_dask
138138
- depends_on_rapids_dask_dependency
139139
- depends_on_dask_cudf
@@ -202,7 +202,7 @@ files:
202202
key: test
203203
includes:
204204
- test_python
205-
- test_python_xgboost
205+
# - test_python_xgboost
206206
py_dask_cuml:
207207
output: pyproject
208208
pyproject_dir: python/cuml
@@ -498,18 +498,18 @@ dependencies:
498498
- output_types: [conda, requirements, pyproject]
499499
packages:
500500
- dask-ml
501-
test_python_xgboost:
502-
common:
503-
- output_types: [conda]
504-
packages:
505-
# We must separate xgboost into its own list so that it is not
506-
# included in the "devcontainers" key. The libxgboost package depends
507-
# on librmm but we do not want to have a package depending on librmm
508-
# in devcontainers since it should be built from source.
509-
- &rapids-xgboost rapids-xgboost==25.12.*,>=0.0.0a0
510-
- output_types: [requirements, pyproject]
511-
packages:
512-
- &xgboost xgboost>=2.1.0
501+
#test_python_xgboost:
502+
#common:
503+
#- output_types: [conda]
504+
#packages:
505+
## We must separate xgboost into its own list so that it is not
506+
## included in the "devcontainers" key. The libxgboost package depends
507+
## on librmm but we do not want to have a package depending on librmm
508+
## in devcontainers since it should be built from source.
509+
#- &rapids-xgboost rapids-xgboost==25.12.*,>=0.0.0a0
510+
#- output_types: [requirements, pyproject]
511+
#packages:
512+
#- &xgboost xgboost>=2.1.0
513513
test_notebooks:
514514
common:
515515
- output_types: [conda, requirements]
@@ -523,11 +523,11 @@ dependencies:
523523
- output_types: conda
524524
packages:
525525
- matplotlib-base
526-
- *rapids-xgboost
526+
# - *rapids-xgboost
527527
- output_types: requirements
528528
packages:
529529
- matplotlib
530-
- *xgboost
530+
# - *xgboost
531531
depends_on_cuda_python:
532532
specific:
533533
- output_types: [conda, requirements, pyproject]

python/cuml/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ test = [
125125
"statsmodels",
126126
"tenacity",
127127
"umap-learn==0.5.7",
128-
"xgboost>=2.1.0",
129128
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
130129
dask = [
131130
"dask-cudf==25.12.*,>=0.0.0a0",

0 commit comments

Comments
 (0)