Skip to content

Commit

Permalink
Small change regarding debug (#738)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthijsBurgh authored May 8, 2024
2 parents dc30cfc + 53b1e8b commit b893fdc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.25.6
1.25.7
2 changes: 1 addition & 1 deletion ci/install-package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ echo -e "\e[35;1mSHARED_DIR = ${SHARED_DIR}\e[0m"
# Set default value for REF_NAME
[ -z "$REF_NAME" ] && REF_NAME="pull"
echo -e "\e[35;1mREF_NAME = ${REF_NAME}\e[0m"
echo -e "\e[35;1mDEBUG = ${DEBUG}\e[0m"
echo -e "\e[35;1mDEBUG = ${DEBUG}\e[0m"

ADDITIONAL_ARGS_LOCAL_INSTALL=()
ADDITIONAL_ARGS_LOCAL_BUILD=()
Expand Down
9 changes: 6 additions & 3 deletions ci/main/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ runs:
done
fi
DEBUG_ARGS=()
DEBUG=${RUNNER_DEBUG:-false}
DEBUG=${RUNNER_DEBUG:+true}
DEBUG=${DEBUG:-false}
if [[ ${DEBUG} == "true" ]]
then
DEBUG_ARGS+=("--debug")
Expand All @@ -100,7 +101,8 @@ runs:
run: |
echo "::group::build-package.sh"
DEBUG_ARGS=()
DEBUG=${RUNNER_DEBUG:-false}
DEBUG=${RUNNER_DEBUG:+true}
DEBUG=${DEBUG:-false}
if [[ ${DEBUG} == "true" ]]
then
DEBUG_ARGS+=("--debug")
Expand All @@ -116,7 +118,8 @@ runs:
run: |
echo "::group::test-package.sh"
DEBUG_ARGS=()
DEBUG=${RUNNER_DEBUG:-false}
DEBUG=${RUNNER_DEBUG:+true}
DEBUG=${DEBUG:-false}
if [[ ${DEBUG} == "true" ]]
then
DEBUG_ARGS+=("--debug")
Expand Down

0 comments on commit b893fdc

Please sign in to comment.