[CI] Remove CUDA 9.0 from CI (#5745)

This commit is contained in:
Philip Hyunsu Cho
2020-06-01 18:15:45 -07:00
committed by GitHub
parent 325156c7a9
commit b77e3e3fcc

1
Jenkinsfile vendored
View File

@@ -79,7 +79,6 @@ pipeline {
script {
parallel ([
'test-python-cpu': { TestPythonCPU() },
'test-python-gpu-cuda9.0': { TestPythonGPU(cuda_version: '9.0') },
'test-python-gpu-cuda10.0': { TestPythonGPU(cuda_version: '10.0') },
'test-python-gpu-cuda10.1': { TestPythonGPU(cuda_version: '10.1') },
'test-python-mgpu-cuda10.1': { TestPythonGPU(cuda_version: '10.1', multi_gpu: true) },