Skip to content

Commit

Permalink
Update exclusion list for CI testing (#519)
Browse files Browse the repository at this point in the history
* Update exclusion list for CI testing; device_scan due to navi3x compiler bug

* Fix typo
  • Loading branch information
stanleytsang-amd authored Feb 9, 2024
1 parent c8ee03b commit 3e31a15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .jenkins/common.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ def runTestCommand (platform, project)
String sudo = auxiliary.sudo(platform.jenkinsLabel)

def testCommand = "ctest --output-on-failure "
def testCommandExcludeRegex = /(rocprim.device_reduce_by_key|rocprim.device_radix_sort)/
def testCommandExcludeRegex = /(rocprim.device_scan)/
def testCommandExclude = "--exclude-regex \"${testCommandExcludeRegex}\""
def hmmExcludeRegex = /(rocprim.device_scan|rocprim.device_reduce_by_key|rocprim.block_sort_bitonic|rocprim.device_merge|rocprim.device_merge_sort|rocprim.device_partition|rocprim.device_segmented_radix_sort|rocprim.device_segmented_scan)/
def hmmExcludeRegex = ''
def hmmTestCommandExclude = "--exclude-regex \"${hmmExcludeRegex}\""
def hmmTestCommand = ''
if (platform.jenkinsLabel.contains('gfx90a'))
Expand Down

0 comments on commit 3e31a15

Please sign in to comment.