From 0a52c6661deb125467829842c3481661e8d51dbb Mon Sep 17 00:00:00 2001 From: Maneesh Gupta Date: Mon, 8 Apr 2019 13:49:15 +0530 Subject: [PATCH] [ci] Disable hipLaunchParm.tst for now Due to a HCC bug in rocm-head, the test fails to compile. Disabling the test until the issue is resolved. Change-Id: Ib4e7baf0b9c2cb5f5dbe38e6dd2bab894d28886a --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 71e8d6e537..5e6ee065fd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -168,6 +168,7 @@ def docker_build_inside_image( def build_image, String inside_args, String platf // Cap the maximum amount of testing, in case of hangs // Excluding hipMultiThreadDevice-pyramid test from automation; due to its flakiness which requires some investigation + // Excluding hipLaunchParm test from automation, due to bug in HCC. timeout(time: 1, unit: 'HOURS') { stage("${platform} unit testing") @@ -177,7 +178,7 @@ def docker_build_inside_image( def build_image, String inside_args, String platf cd ${build_dir_rel} make install -j\$(nproc) make build_tests -i -j\$(nproc) - ctest -E pyramid + ctest -E "(pyramid|hipLaunchParm.tst)" """ // If unit tests output a junit or xunit file in the future, jenkins can parse that file // to display test results on the dashboard