@@ -70,10 +70,10 @@ pipeline {
70
70
' build-cpu-non-omp' : { BuildCPUNonOmp () },
71
71
// Build reference, distribution-ready Python wheel with CUDA 10.0
72
72
// using CentOS 6 image
73
- ' build-gpu-cuda10.0' : { BuildCUDA (cuda_version : ' 10.0' ) },
73
+ ' build-gpu-cuda10.0' : { BuildCUDA (cuda_version : ' 10.0' , build_rmm : true ) },
74
74
// The build-gpu-* builds below use Ubuntu image
75
75
' build-gpu-cuda10.1' : { BuildCUDA (cuda_version : ' 10.1' ) },
76
- ' build-gpu-cuda10.2' : { BuildCUDA (cuda_version : ' 10.2' , build_rmm : true ) },
76
+ ' build-gpu-cuda10.2' : { BuildCUDA (cuda_version : ' 10.2' ) },
77
77
' build-gpu-cuda11.0' : { BuildCUDA (cuda_version : ' 11.0' ) },
78
78
' build-jvm-packages-gpu-cuda10.0' : { BuildJVMPackagesWithCUDA (spark_version : ' 3.0.0' , cuda_version : ' 10.0' ) },
79
79
' build-jvm-packages' : { BuildJVMPackages (spark_version : ' 3.0.0' ) },
@@ -386,8 +386,8 @@ def TestPythonGPU(args) {
386
386
sh " ${ dockerRun} ${ container_type} ${ docker_binary} ${ docker_args} tests/ci_build/test_python.sh ${ mgpu_indicator} "
387
387
if (args. test_rmm) {
388
388
sh " rm -rfv build/ python-package/dist/"
389
- unstash name : " xgboost_whl_rmm_cuda${ args.host_cuda_version } "
390
- unstash name : " xgboost_cpp_tests_rmm_cuda${ args.host_cuda_version } "
389
+ unstash name : " xgboost_whl_rmm_cuda${ artifact_cuda_version } "
390
+ unstash name : " xgboost_cpp_tests_rmm_cuda${ artifact_cuda_version } "
391
391
sh " ${ dockerRun} ${ container_type} ${ docker_binary} ${ docker_args} tests/ci_build/test_python.sh ${ mgpu_indicator} "
392
392
}
393
393
deleteDir()
@@ -417,11 +417,11 @@ def TestCppGPU(args) {
417
417
echo " Test C++, CUDA ${ args.host_cuda_version} "
418
418
def container_type = " gpu"
419
419
def docker_binary = " nvidia-docker"
420
- def docker_args = " --build-arg CUDA_VERSION=${ artifact_cuda_version } "
420
+ def docker_args = " --build-arg CUDA_VERSION=${ args.host_cuda_version } "
421
421
sh " ${ dockerRun} ${ container_type} ${ docker_binary} ${ docker_args} build/testxgboost"
422
422
if (args. test_rmm) {
423
423
sh " rm -rfv build/"
424
- unstash name : " xgboost_cpp_tests_rmm_cuda${ args.host_cuda_version } "
424
+ unstash name : " xgboost_cpp_tests_rmm_cuda${ artifact_cuda_version } "
425
425
echo " Test C++, CUDA ${ args.host_cuda_version} with RMM"
426
426
container_type = " rmm"
427
427
docker_binary = " nvidia-docker"
0 commit comments