From 09e1cde903ae30379e37e51c19a8586911d06e38 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 --- hipamd/Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hipamd/Jenkinsfile b/hipamd/Jenkinsfile index 0be0bf29bd..71e8d6e537 100644 --- a/hipamd/Jenkinsfile +++ b/hipamd/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