From 189056103f15de8556d8f2ede8442781e57167ea Mon Sep 17 00:00:00 2001 From: Thomas Ning Date: Fri, 27 Jun 2025 16:40:10 -0700 Subject: [PATCH] =?UTF-8?q?Revert=20"Enable=20builds=20on=20gfx942=20by=20?= =?UTF-8?q?default=20and=20run=20all=20tests=20on=20develop=20branc?= =?UTF-8?q?=E2=80=A6"=20(#2418)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit e4f117a18e6856d19730c3c8be6cffcb9a3dc12d. [ROCm/composable_kernel commit: 28a63d7dcb371f50c2f4f5ced6d09345b4f207f7] --- Jenkinsfile | 30 +++++------------------------- 1 file changed, 5 insertions(+), 25 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index aec833587f..9c68c408bf 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -225,10 +225,6 @@ def cmake_build(Map conf=[:]){ def build_envs = "CTEST_PARALLEL_LEVEL=4 " + conf.get("build_env","") def prefixpath = conf.get("prefixpath","/opt/rocm") def setup_args = conf.get("setup_args","") - // make sure all unit tests always run on develop branch - if(env.BRANCH_NAME == "develop"){ - params.RUN_ALL_UNIT_TESTS = true - } if (prefixpath != "/usr/local"){ setup_args = setup_args + " -DCMAKE_PREFIX_PATH=${prefixpath} " @@ -900,26 +896,10 @@ pipeline { name: "BUILD_GFX908", defaultValue: false, description: "Build CK and run tests on gfx908 (default: OFF)") - booleanParam( - name: "BUILD_GFX90A", - defaultValue: true, - description: "Build CK and run tests on gfx90a (default: ON)") - booleanParam( - name: "BUILD_GFX942", - defaultValue: true, - description: "Build CK and run tests on gfx942 (default: ON)") booleanParam( name: "BUILD_GFX950", defaultValue: false, description: "Build CK and run tests on gfx950 (default: OFF)") - booleanParam( - name: "BUILD_GFX10", - defaultValue: true, - description: "Build CK and run tests on gfx10 (default: ON)") - booleanParam( - name: "BUILD_GFX11", - defaultValue: true, - description: "Build CK and run tests on gfx11 (default: ON)") booleanParam( name: "BUILD_GFX12", defaultValue: true, @@ -1302,7 +1282,7 @@ pipeline { { when { beforeAgent true - expression { (params.BUILD_GFX942.toBoolean() || params.RUN_FULL_QA.toBoolean()) && !params.BUILD_INSTANCES_ONLY.toBoolean() && !params.BUILD_LEGACY_OS.toBoolean() } + expression { params.RUN_FULL_QA.toBoolean() && !params.BUILD_LEGACY_OS.toBoolean() } } agent{ label rocmnode("gfx942") } environment{ @@ -1340,7 +1320,7 @@ pipeline { -DCMAKE_CXX_FLAGS=" -O3 " .. && make -j """ } steps{ - Build_CK_and_Reboot(setup_args: setup_args, docker_name: "${env.CK_DOCKERHUB_PRIVATE}:ck_ub22.04_rocm7.0", config_targets: "install", no_reboot:true, build_type: 'Release', execute_cmd: execute_args, prefixpath: '/usr/local') + Build_CK_and_Reboot(setup_args: setup_args, docker_name: "rocm/composable_kernel-private:ck_ub22.04_rocm7.0", config_targets: "install", no_reboot:true, build_type: 'Release', execute_cmd: execute_args, prefixpath: '/usr/local') cleanWs() } } @@ -1369,7 +1349,7 @@ pipeline { { when { beforeAgent true - expression { params.BUILD_GFX90A.toBoolean() && !params.RUN_FULL_QA.toBoolean() && !params.BUILD_INSTANCES_ONLY.toBoolean() && !params.BUILD_LEGACY_OS.toBoolean() } + expression { !params.RUN_FULL_QA.toBoolean() && !params.BUILD_INSTANCES_ONLY.toBoolean() && !params.BUILD_LEGACY_OS.toBoolean() } } agent{ label rocmnode("gfx90a") } environment{ @@ -1408,7 +1388,7 @@ pipeline { { when { beforeAgent true - expression { params.BUILD_GFX10.toBoolean() && !params.RUN_FULL_QA.toBoolean() && !params.BUILD_INSTANCES_ONLY.toBoolean() && !params.BUILD_LEGACY_OS.toBoolean() } + expression { !params.RUN_FULL_QA.toBoolean() && !params.BUILD_INSTANCES_ONLY.toBoolean() && !params.BUILD_LEGACY_OS.toBoolean() } } agent{ label rocmnode("gfx1030") } environment{ @@ -1429,7 +1409,7 @@ pipeline { { when { beforeAgent true - expression { params.BUILD_GFX11.toBoolean() && !params.RUN_FULL_QA.toBoolean() && !params.BUILD_INSTANCES_ONLY.toBoolean() && !params.BUILD_LEGACY_OS.toBoolean() } + expression { !params.RUN_FULL_QA.toBoolean() && !params.BUILD_INSTANCES_ONLY.toBoolean() && !params.BUILD_LEGACY_OS.toBoolean() } } agent{ label rocmnode("gfx1101") } environment{