Skip to content

Commit

Permalink
contrib/intel/jenkins: Change release global variable to true/false
Browse files Browse the repository at this point in the history
Signed-off-by: Zach Dworkin <[email protected]>
  • Loading branch information
zachdworkin committed Jul 25, 2023
1 parent c91f77c commit 6f3ad5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contrib/intel/jenkins/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -619,13 +619,13 @@ pipeline {
sh """
env
(
if [[ $RELEASE -eq 1 ]]; then
if [[ ${RELEASE} = true ]]; then
python3.9 ${env.WORKSPACE}/${SCRIPT_LOCATION}/summary.py --summary_item=all --release
else
python3.9 ${env.WORKSPACE}/${SCRIPT_LOCATION}/summary.py --summary_item=all
fi
echo "------------"
if [[ ${RELEASE} -eq 1 ]]; then
if [[ ${RELEASE} = true ]]; then
mkdir -p ${env.WORKSPACE}/internal
rm -rf ${env.WORKSPACE}/internal/*
git clone https://${env.PAT}@github.com/${env.INTERNAL} ${env.WORKSPACE}/internal
Expand Down

0 comments on commit 6f3ad5f

Please sign in to comment.