[CI] Remove CUDA 9.0 from Windows CI. (#5674)

* Remove CUDA 9.0 on Windows CI.

* Require cuda10 tag, to differentiate

Co-authored-by: Philip Hyunsu Cho <chohyu01@cs.washington.edu>
This commit is contained in:
Jiaming Yuan 2020-05-28 03:23:36 +08:00 committed by GitHub
parent 78b4e95f25
commit 75a0025a3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,7 @@ pipeline {
steps { steps {
script { script {
parallel ([ parallel ([
'build-win64-cuda9.0': { BuildWin64() } 'build-win64-cuda10.0': { BuildWin64() }
]) ])
} }
milestone ordinal: 2 milestone ordinal: 2
@ -40,7 +40,6 @@ pipeline {
script { script {
parallel ([ parallel ([
'test-win64-cpu': { TestWin64CPU() }, 'test-win64-cpu': { TestWin64CPU() },
'test-win64-gpu-cuda9.0': { TestWin64GPU(cuda_target: 'cuda9') },
'test-win64-gpu-cuda10.0': { TestWin64GPU(cuda_target: 'cuda10_0') }, 'test-win64-gpu-cuda10.0': { TestWin64GPU(cuda_target: 'cuda10_0') },
'test-win64-gpu-cuda10.1': { TestWin64GPU(cuda_target: 'cuda10_1') } 'test-win64-gpu-cuda10.1': { TestWin64GPU(cuda_target: 'cuda10_1') }
]) ])
@ -67,7 +66,7 @@ def checkoutSrcs() {
} }
def BuildWin64() { def BuildWin64() {
node('win64 && build') { node('win64 && build && cuda10') {
unstash name: 'srcs' unstash name: 'srcs'
echo "Building XGBoost for Windows AMD64 target..." echo "Building XGBoost for Windows AMD64 target..."
bat "nvcc --version" bat "nvcc --version"