Force organization name to be lowercase for docker

error building docker image because of CamelCasing


[ROCm/clr commit: 6f8592a863]
Этот коммит содержится в:
Kent Knox
2017-09-26 14:33:29 -05:00
родитель 6a1f918949
Коммит 71a01e5bbb
поставляемый
+1 -1
Просмотреть файл
@@ -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