From d52763eeaf856fbf767e9839df0a4e9e11985075 Mon Sep 17 00:00:00 2001 From: Maneesh Gupta Date: Wed, 23 Nov 2022 12:34:02 +0530 Subject: [PATCH] Better handle failures in CI infra (#3098) * Update Jenkinsfile * Update tests/catch/unit/CMakeLists.txt [ROCm/hip-tests commit: 7ba53cd5da0b6c92ad85aef974d816de8e34e689] --- projects/hip-tests/catch/unit/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/hip-tests/catch/unit/CMakeLists.txt b/projects/hip-tests/catch/unit/CMakeLists.txt index d856006312..c57ba1c25a 100644 --- a/projects/hip-tests/catch/unit/CMakeLists.txt +++ b/projects/hip-tests/catch/unit/CMakeLists.txt @@ -34,6 +34,6 @@ add_subdirectory(multiThread) add_subdirectory(compiler) add_subdirectory(errorHandling) add_subdirectory(cooperativeGrps) -if(HIP_PLATFORM STREQUAL "amd") +if(HIP_PLATFORM STREQUAL "amd" AND NOT DEFINED CI_DISABLE_TESTBUILD) add_subdirectory(clock) endif()