Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
composable_kernel
Commits
aac26d32
Commit
aac26d32
authored
Oct 20, 2023
by
illsilin
Browse files
do not use sccache with staging compiler
parent
16402e96
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Jenkinsfile
Jenkinsfile
+2
-2
No files found.
Jenkinsfile
View file @
aac26d32
...
...
@@ -219,7 +219,7 @@ def cmake_build(Map conf=[:]){
}
else
{
setup_args
=
" -DCMAKE_BUILD_TYPE=release"
+
setup_args
}
if
(
env
.
CK_SCCACHE
)
if
(
env
.
CK_SCCACHE
&&
"${params.COMPILER_VERSION}"
!=
"amd-stg-open"
)
{
setup_args
=
" -DCMAKE_CXX_COMPILER_LAUNCHER=sccache -DCMAKE_C_COMPILER_LAUNCHER=sccache "
+
setup_args
}
...
...
@@ -233,7 +233,7 @@ def cmake_build(Map conf=[:]){
rm -rf install
mkdir install
cd build
if [ "${env.CK_SCCACHE}" != "null" ]; then \
if [ "${env.CK_SCCACHE}" != "null"
&& "${params.COMPILER_VERSION}" != "amd-stg-open"
]; then \
export ROCM_PATH=/opt/rocm
export SCCACHE_ENABLED=true
export SCCACHE_LOG_LEVEL=debug
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment