Browse Source

fix(build): cache debug deps during 2nd stage

reviewable/pr6180/r1
Maxim Biro 6 years ago
parent
commit
a686468bfd
No known key found for this signature in database
GPG Key ID: AB3AD9896472BFA4
  1. 6
      windows/cross-compile/build.sh

6
windows/cross-compile/build.sh

@ -974,8 +974,10 @@ else @@ -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
@ -1071,7 +1073,9 @@ then @@ -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

Loading…
Cancel
Save