Skip to content

Commit

Permalink
Add rocm/llvm to path
Browse files Browse the repository at this point in the history
to include /opt/rocm/llvm/lib/cmake/clang/ClangConfig.cmake
  • Loading branch information
samjwu committed Nov 7, 2024
1 parent ccd0525 commit 651f5bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .jenkins/common.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def runCompileCommand(platform, project, jobName, boolean debug=false, boolean s
String buildStatic = staticLibrary ? '-DBUILD_SHARED_LIBS=OFF' : '-DBUILD_SHARED_LIBS=ON'
String codeCovFlag = codeCoverage ? '-DCODE_COVERAGE=ON' : ''
String cmake = platform.jenkinsLabel.contains('centos') ? 'cmake3' : 'cmake'
String cmakePrefixPath = '-DCMAKE_PREFIX_PATH=/opt/rocm/bin'
String cmakePrefixPath = '-DCMAKE_PREFIX_PATH=/opt/rocm;/opt/rocm/llvm;/opt/rocm/bin'
//Set CI node's gfx arch as target if PR, otherwise use default targets of the library
String amdgpuTargets = env.BRANCH_NAME.startsWith('PR-') ? '-DAMDGPU_TARGETS=\$gfx_arch' : ''

Expand Down

0 comments on commit 651f5bc

Please sign in to comment.