From 336a781a2d80ab40c8d36ba1b73a2da2c435e9e2 Mon Sep 17 00:00:00 2001 From: Maneesh Gupta Date: Wed, 13 Feb 2019 13:22:08 +0530 Subject: [PATCH] [ci] Switch CI tests to cuda-10.x Change-Id: I99e99bcf528d0c38924bd3a86a3067628f2bb3ea --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0be0bf29bd..71e8d6e537 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -295,7 +295,7 @@ def docker_upload_dockerhub( String local_org, String image_name, String remote_ String build_config = 'Release' String job_name = env.JOB_NAME.toLowerCase( ) -// The following launches 3 builds in parallel: rocm-head, rocm-2.1.x and cuda-9.x +// The following launches 3 builds in parallel: rocm-head, rocm-2.1.x and cuda-10.x parallel rocm_2_1: { node('hip-rocm') @@ -386,14 +386,14 @@ rocm_head: */ } }, -cuda_9_x: +cuda_10_x: { node('hip-cuda') { //////////////////////////////////////////////////////////////////////// // Block of string constants customizing behavior for cuda - String nvcc_ver = 'nvcc-9.x' - String from_image = 'ci_test_nodes/cuda-9.x/ubuntu-16.04:latest' + String nvcc_ver = 'cuda-10.x' + String from_image = 'ci_test_nodes/cuda-10.x/ubuntu-16.04:latest' String inside_args = '--runtime=nvidia'; // Checkout source code, dependencies and version files