From e219f04cde748f57dd43b8d73c3b9e6cf11c784f Mon Sep 17 00:00:00 2001 From: Mark Sadang Date: Tue, 21 Jun 2022 10:39:40 -0700 Subject: [PATCH] add wsl2 stage --- ci/Jenkinsfile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index 1f8cfe213..6069c07db 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -82,6 +82,24 @@ pipeline { } } } + stage("WSL2 Nightly Test Stage") { + agent { + label 'wsl2' + docker 'gpuci/rapidsai:22.08-cuda11.5-devel-centos7-py3.9' + } + when { environment name: 'BUILD_TYPE', value: 'nightly' } + options { + timeout(time: 10, unit: 'MINUTES', activity: true) + } + environment { UPLOAD_PKGS = "false" } + steps { + script { + parallel generateStage("wsl2_nightly_test",{ + sh "./ci/gpu_test.sh" + }) + } + } + } stage("Upload Anaconda Packages") { environment { STABLE_CONDA_TOKEN = credentials('rapidsai-conda-upload-api')