We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 651f5bc commit 961f08cCopy full SHA for 961f08c
.jenkins/common.groovy
@@ -11,7 +11,7 @@ def runCompileCommand(platform, project, jobName, boolean debug=false, boolean s
11
String buildStatic = staticLibrary ? '-DBUILD_SHARED_LIBS=OFF' : '-DBUILD_SHARED_LIBS=ON'
12
String codeCovFlag = codeCoverage ? '-DCODE_COVERAGE=ON' : ''
13
String cmake = platform.jenkinsLabel.contains('centos') ? 'cmake3' : 'cmake'
14
- String cmakePrefixPath = '-DCMAKE_PREFIX_PATH=/opt/rocm;/opt/rocm/llvm;/opt/rocm/bin'
+ String cmakePrefixPath = '-DCMAKE_PREFIX_PATH="/opt/rocm;/opt/rocm/llvm;/opt/rocm/bin"'
15
//Set CI node's gfx arch as target if PR, otherwise use default targets of the library
16
String amdgpuTargets = env.BRANCH_NAME.startsWith('PR-') ? '-DAMDGPU_TARGETS=\$gfx_arch' : ''
17
0 commit comments