diff --git a/Jenkinsfile b/Jenkinsfile index b2fd9a8f4..7a6963366 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -516,19 +516,19 @@ def build_pipeline( compiler_data compiler_args, docker_data docker_args, projec // } //}, -parallel rocm20_ubuntu: +parallel rocm22_ubuntu: { - node( 'docker && rocm20 && gfx900') + node( 'docker && rocm22 && gfx900') { def hcc_docker_args = new docker_data( - from_image:'rocm/dev-ubuntu-16.04:2.0', + from_image:'rocm/dev-ubuntu-16.04:2.2', build_docker_file:'dockerfile-build-ubuntu-rock', install_docker_file:'dockerfile-install-ubuntu', docker_run_args:'--device=/dev/kfd --device=/dev/dri --group-add=video', docker_build_args:' --pull' ) def hcc_compiler_args = new compiler_data( - compiler_name:'hcc-rocm19-ubuntu', + compiler_name:'hcc-rocm22-ubuntu', build_config:'Release', compiler_path:'/opt/rocm/bin/hcc' ) @@ -549,21 +549,21 @@ parallel rocm20_ubuntu: } }, -rocm20_ubuntu_gfx906: +rocm22_ubuntu_gfx906: { try { - node( 'docker && rocm20 && gfx906') + node( 'docker && rocm22 && gfx906') { def hcc_docker_args = new docker_data( - from_image:'rocm/dev-ubuntu-16.04:2.0', + from_image:'rocm/dev-ubuntu-16.04:2.2', build_docker_file:'dockerfile-build-ubuntu-rock', install_docker_file:'dockerfile-install-ubuntu', docker_run_args:'--device=/dev/kfd --device=/dev/dri --group-add=video', docker_build_args:' --pull' ) def hcc_compiler_args = new compiler_data( - compiler_name:'hcc-rocm19-ubuntu', + compiler_name:'hcc-rocm22-ubuntu', build_config:'Release', compiler_path:'/opt/rocm/bin/hcc' )