diff --git a/projects/clr/hipamd/Jenkinsfile b/projects/clr/hipamd/Jenkinsfile index 734e875e03..e38f7824d2 100644 --- a/projects/clr/hipamd/Jenkinsfile +++ b/projects/clr/hipamd/Jenkinsfile @@ -295,13 +295,13 @@ 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-3.0.x and cuda-10.x -parallel rocm_3_0: +// The following launches 3 builds in parallel: rocm-head, rocm-3.1.x and cuda-10.x +parallel rocm_3_1: { node('hip-rocm') { - String hcc_ver = 'rocm-3.0.x' - String from_image = 'ci_test_nodes/rocm-3.0.x/ubuntu-16.04:latest' + String hcc_ver = 'rocm-3.1.x' + String from_image = 'ci_test_nodes/rocm-3.1.x/ubuntu-16.04:latest' String inside_args = '--device=/dev/kfd --device=/dev/dri --group-add=video' // Checkout source code, dependencies and version files diff --git a/projects/clr/hipamd/bin/hipconfig b/projects/clr/hipamd/bin/hipconfig index a73e8af8b9..c56b56ecd8 100755 --- a/projects/clr/hipamd/bin/hipconfig +++ b/projects/clr/hipamd/bin/hipconfig @@ -1,7 +1,7 @@ #!/usr/bin/perl -w $HIP_BASE_VERSION_MAJOR = "3"; -$HIP_BASE_VERSION_MINOR = "1"; +$HIP_BASE_VERSION_MINOR = "2"; # Need perl > 5.10 to use logic-defined or use 5.006; use v5.10.1;