Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 1 addition & 19 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ rocBLASCI:
rocblas.paths.build_command = './install.sh -lasm_ci -c'

// Define test architectures, optional rocm version argument is available
def nodes = new dockerNodes(['gfx900 && ubuntu', 'gfx906 && centos7', 'gfx900 && hip-clang && ubuntu'], rocblas)
def nodes = new dockerNodes(['gfx900 && ubuntu', 'gfx906 && centos7'], rocblas)

boolean formatCheck = true

Expand Down Expand Up @@ -95,24 +95,6 @@ rocBLASCI:
junit "${project.paths.project_build_prefix}/build/release/clients/staging/*.xml"
}
}
else if(platform.jenkinsLabel.contains('hip-clang'))
{
if(auxiliary.isJobStartedByTimer())
{
command = """#!/usr/bin/env bash
set -x
cd ${project.paths.project_build_prefix}/build/release/clients/staging
LD_LIBRARY_PATH=/opt/rocm/hcc/lib GTEST_LISTENER=NO_PASS_LINE_IN_LOG ./rocblas-test --gtest_output=xml --gtest_color=yes --gtest_filter=*quick*-*known_bug* #--gtest_filter=*quick*
"""

platform.runCommand(this, command)
junit "${project.paths.project_build_prefix}/build/release/clients/staging/*.xml"
}
else
{
testCommand = null
}
}
else
{
if(auxiliary.isJobStartedByTimer())
Expand Down