Browse Source

CI: restore full builds for pull requests

When processing pull request, build dependencies instead of
downloading them.
emacs-27
Leonid Plyushch 6 years ago
parent
commit
77f24af5b8
No known key found for this signature in database GPG Key ID: 45F2964132545795
  1. 7
      scripts/build/ci/cirrus-ci_dispatcher.sh

7
scripts/build/ci/cirrus-ci_dispatcher.sh

@ -107,7 +107,12 @@ if ! $DO_UPLOAD; then
echo
for pkg in $PACKAGE_NAMES; do
./build-package.sh -a "$TERMUX_ARCH" -I "$pkg"
if [ -n "$CIRRUS_PR" ]; then
## Use full builds for pull request.
./build-package.sh -a "$TERMUX_ARCH" "$pkg"
else
./build-package.sh -a "$TERMUX_ARCH" -I "$pkg"
fi
done
echo
fi

Loading…
Cancel
Save