Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
fix(build): cache debug deps during 2nd stage
Browse files Browse the repository at this point in the history
  • Loading branch information
nurupo authored and anthonybilinski committed Nov 22, 2020
1 parent 7d3edaf commit 2712bc6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion windows/cross-compile/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -974,8 +974,10 @@ else
fi


if [[ "$BUILD_TYPE" == "debug" ]]
set +u
if [[ -n "$TRAVIS_CI_STAGE" ]] || [[ "$BUILD_TYPE" == "debug" ]]
then
set -u

# mingw-w64-debug-scripts

Expand Down Expand Up @@ -1071,7 +1073,9 @@ then
echo "Using cached build of GDB `cat $GDB_PREFIX_DIR/done`"
fi

set +u
fi
set -u


# NSIS ShellExecAsUser plugin
Expand Down

0 comments on commit 2712bc6

Please sign in to comment.