Skip to content

Commit 04232c0

Browse files
authored
[CI] Fix broken tests (#6048)
1 parent 0353a78 commit 04232c0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ pipeline {
9292
'test-python-gpu-cuda10.2': { TestPythonGPU(host_cuda_version: '10.2') },
9393
'test-python-gpu-cuda11.0-cross': { TestPythonGPU(artifact_cuda_version: '10.0', host_cuda_version: '11.0') },
9494
'test-python-gpu-cuda11.0': { TestPythonGPU(artifact_cuda_version: '11.0', host_cuda_version: '11.0') },
95-
'test-python-mgpu-cuda10.2': { TestPythonGPU(artifact_cuda_version: '10.2', host_cuda_version: '10.2', multi_gpu: true) },
95+
'test-python-mgpu-cuda10.2': { TestPythonGPU(artifact_cuda_version: '10.0', host_cuda_version: '10.2', multi_gpu: true) },
9696
'test-cpp-gpu-cuda10.2': { TestCppGPU(artifact_cuda_version: '10.2', host_cuda_version: '10.2') },
9797
'test-cpp-gpu-cuda11.0': { TestCppGPU(artifact_cuda_version: '11.0', host_cuda_version: '11.0') },
9898
'test-jvm-jdk8-cuda10.0': { CrossTestJVMwithJDKGPU(artifact_cuda_version: '10.0', host_cuda_version: '10.0') },

tests/ci_build/Dockerfile.gpu

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ ENV PATH=/opt/python/bin:$PATH
1717

1818
# Create new Conda environment with cuDF, Dask, and cuPy
1919
RUN \
20-
conda create -n gpu_test -c rapidsai -c nvidia -c conda-forge -c defaults \
21-
python=3.7 cudf=0.14 cudatoolkit=$CUDA_VERSION dask dask-cuda dask-cudf cupy \
20+
conda create -n gpu_test -c rapidsai-nightly -c rapidsai -c nvidia -c conda-forge -c defaults \
21+
python=3.7 cudf=0.15* cudatoolkit=$CUDA_VERSION dask dask-cuda dask-cudf cupy \
2222
numpy pytest scipy scikit-learn pandas matplotlib wheel python-kubernetes urllib3 graphviz hypothesis
2323

2424
ENV GOSU_VERSION 1.10

0 commit comments

Comments
 (0)