-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix CI HIP install script to support alpaka'S CI base container instead require native ROCM containers. - ROCm 6 shipped clang is broken and `clang -v` is failing. Therefore this PR is changing all compiler `-v` querries to `--version`. - CMake: set ROCM 6.0 as supported version CI_FILTER: ^linux_hipcc
- Loading branch information
1 parent
27de8ee
commit 375210c
Showing
5 changed files
with
31 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -68,4 +68,4 @@ then | |
fi | ||
|
||
which "${CXX}" | ||
${CXX} -v | ||
${CXX} --version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ then | |
fi | ||
|
||
which "${CXX}" | ||
${CXX} -v | ||
${CXX} --version | ||
which "${CC}" | ||
${CC} -v | ||
${CC} --version | ||
sycl-ls |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,7 +104,7 @@ then | |
fi | ||
|
||
which "${CXX}" | ||
${CXX} -v | ||
${CXX} --version | ||
fi | ||
|
||
if [ "$ALPAKA_CI_OS_NAME" = "Linux" ] | ||
|