From a8fb1eadd2f45dac8efb1f2671b6c8310e54543a Mon Sep 17 00:00:00 2001 From: Illia Silin <98187287+illsilin@users.noreply.github.com> Date: Thu, 18 Aug 2022 12:54:47 -0700 Subject: [PATCH] restart the stages on MI200 in case of failures (#366) * restart the stages on MI200 * fix the docker image storage issue [ROCm/composable_kernel commit: 9efd033bee1301f13e6645752ecb01c26fa76903] --- Jenkinsfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index f60507d21a..21a4a49bae 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -19,7 +19,7 @@ def runShell(String command){ } def getDockerImageName(){ - def img = "${env.MIOPEN_IMAGE_URL}:composable_kernels_${params.COMPILER_VERSION}" + def img = "${env.CK_IMAGE_URL}:composable_kernels_${params.COMPILER_VERSION}" return img } @@ -561,6 +561,7 @@ pipeline { beforeAgent true expression { params.RUN_FULL_QA.toBoolean() } } + options { retry(2) } agent{ label rocmnode("gfx90a")} environment{ setup_args = """ -D CMAKE_CXX_FLAGS="--offload-arch=gfx90a -O3 " -DBUILD_DEV=On """ @@ -602,6 +603,7 @@ pipeline { beforeAgent true expression { !params.RUN_FULL_QA.toBoolean() && !params.TEST_NODE_PERFORMANCE.toBoolean() } } + options { retry(2) } agent{ label rocmnode("gfx908")} environment{ setup_args = """ -D CMAKE_CXX_FLAGS="--offload-arch=gfx908 -O3 " -DBUILD_DEV=On """ @@ -616,6 +618,7 @@ pipeline { beforeAgent true expression { params.RUN_FULL_QA.toBoolean() || params.TEST_NODE_PERFORMANCE.toBoolean() } } + options { retry(2) } agent{ label rocmnode("gfx90a")} environment{ setup_args = """ -D CMAKE_CXX_FLAGS="--offload-arch=gfx90a -O3 " -DBUILD_DEV=On """