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
b7c6350f
Commit
b7c6350f
authored
Oct 20, 2023
by
illsilin
Browse files
fix the condition syntax
parent
1b5af83d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
Jenkinsfile
Jenkinsfile
+1
-2
No files found.
Jenkinsfile
View file @
b7c6350f
...
...
@@ -233,7 +233,7 @@ def cmake_build(Map conf=[:]){
rm -rf install
mkdir install
cd build
if [ "${env.CK_SCCACHE}" != "null"
&&
"${params.COMPILER_VERSION}" != "amd-stg-open" ]; 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
...
...
@@ -242,7 +242,6 @@ def cmake_build(Map conf=[:]){
export SCCACHE_BIN=/usr/local/.cargo/bin/sccache
export SCCACHE_EXTRAFILES=/tmp/.sccache/rocm_compilers_hash_file
export SCCACHE_REDIS="redis://${env.CK_SCCACHE}"
../script/sccache_wrapper.sh --enforce_redis
fi
"""
...
...
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