From 6f8592a863034b426b241cfd7799b20f10f6a3c0 Mon Sep 17 00:00:00 2001 From: Kent Knox Date: Tue, 26 Sep 2017 14:33:29 -0500 Subject: [PATCH] Force organization name to be lowercase for docker error building docker image because of CamelCasing --- hipamd/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hipamd/Jenkinsfile b/hipamd/Jenkinsfile index db6cec1e7b..01e1e1d1da 100644 --- a/hipamd/Jenkinsfile +++ b/hipamd/Jenkinsfile @@ -291,7 +291,7 @@ String hcc_integration_testing( String inside_args, String job, String build_con { // Attempt to make unique docker image names for each build, to support concurrent builds // Mangle docker org name with upstream build info - String testing_org_name = 'hcc-test-' + get_upstream_build_project( ).replaceAll('/','-') + '-' + get_upstream_build_num( ) + String testing_org_name = 'hcc-test-' + get_upstream_build_project( ).replaceAll('/','-').toLowerCase( ) + '-' + get_upstream_build_num( ) // String testing_org_name = 'hcc-test-artifacts-download' // Tag image name with this build number