Browse Source

CI: restore full builds for pull requests

When processing pull request, build dependencies instead of
downloading them.
android-5
Leonid Plyushch 6 years ago
parent
commit
50ba29a8e2
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

@ -99,6 +99,11 @@ fi
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

Loading…
Cancel
Save