[CI] Run cuDF tests in Jenkins CI server (#4927)

This commit is contained in:
Philip Hyunsu Cho
2019-10-12 21:04:54 -07:00
committed by Jiaming Yuan
parent 5b4f28cc46
commit f7487e4c2a
5 changed files with 64 additions and 1 deletions

7
Jenkinsfile vendored
View File

@@ -293,6 +293,13 @@ def TestPythonGPU(args) {
${dockerRun} ${container_type} ${docker_binary} ${docker_args} tests/ci_build/test_python.sh gpu
"""
}
// For CUDA 10.0 target, run cuDF tests too
if (args.cuda_version == '10.0') {
echo "Running tests with cuDF..."
sh """
${dockerRun} cudf ${docker_binary} ${docker_args} tests/ci_build/test_python.sh cudf
"""
}
deleteDir()
}
}