2017-02-06 13:40:28 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2017-03-05 09:32:44 -05:00
|
|
|
# WARNING: NGBUILDS_IO_KEY should NOT be printed.
|
|
|
|
set +x -eu -o pipefail
|
2017-05-12 04:08:45 -04:00
|
|
|
exec 3>&1
|
2017-02-06 13:40:28 -05:00
|
|
|
|
|
|
|
|
2017-05-11 18:02:13 -04:00
|
|
|
readonly INPUT_DIR=dist/
|
|
|
|
readonly OUTPUT_FILE=/tmp/snapshot.tar.gz
|
|
|
|
readonly AIO_BUILDS_DOMAIN=ngbuilds.io
|
|
|
|
readonly UPLOAD_URL=https://$AIO_BUILDS_DOMAIN/create-build/$TRAVIS_PULL_REQUEST/$TRAVIS_PULL_REQUEST_SHA
|
2017-06-30 06:29:39 -04:00
|
|
|
|
|
|
|
readonly SHORT_SHA=$(echo $TRAVIS_PULL_REQUEST_SHA | cut -c1-7)
|
|
|
|
readonly DEPLOYED_URL=https://pr$TRAVIS_PULL_REQUEST-$SHORT_SHA.$AIO_BUILDS_DOMAIN
|
2017-05-12 04:08:45 -04:00
|
|
|
|
2017-05-11 18:02:13 -04:00
|
|
|
readonly skipBuild=$([[ "$1" == "--skip-build" ]] && echo "true" || echo "");
|
|
|
|
readonly relevantChangedFilesCount=$(git diff --name-only $TRAVIS_COMMIT_RANGE | grep -P "^(?:aio|packages)/(?!.*[._]spec\.[jt]s$)" | wc -l)
|
2017-02-06 13:40:28 -05:00
|
|
|
|
2017-05-12 15:07:51 -04:00
|
|
|
(
|
|
|
|
cd "`dirname $0`/.."
|
2017-03-02 18:58:31 -05:00
|
|
|
|
2017-05-12 15:07:51 -04:00
|
|
|
# Do not deploy unless this PR has touched relevant files: `aio/` or `packages/` (except for spec files)
|
|
|
|
if [[ $relevantChangedFilesCount -eq 0 ]]; then
|
|
|
|
echo "Skipping deploy because this PR did not touch any relevant files."
|
2017-05-11 18:02:13 -04:00
|
|
|
exit 0
|
2017-05-12 15:07:51 -04:00
|
|
|
fi
|
2017-05-11 18:02:13 -04:00
|
|
|
|
2017-05-12 15:07:51 -04:00
|
|
|
# Build the app
|
2017-08-03 04:40:39 -04:00
|
|
|
if [[ "$skipBuild" != "true" ]]; then
|
2017-05-12 15:07:51 -04:00
|
|
|
yarn build
|
|
|
|
fi
|
|
|
|
tar --create --gzip --directory "$INPUT_DIR" --file "$OUTPUT_FILE" .
|
2017-05-23 20:20:56 -04:00
|
|
|
yarn payload-size
|
2017-03-02 18:58:31 -05:00
|
|
|
|
2017-05-12 15:07:51 -04:00
|
|
|
# Deploy to staging
|
2017-08-03 04:40:39 -04:00
|
|
|
readonly output=$(
|
2017-05-12 15:07:51 -04:00
|
|
|
curl --include --location --request POST --silent --write-out "\nHTTP_CODE: %{http_code}\n" \
|
|
|
|
--header "Authorization: Token $NGBUILDS_IO_KEY" --data-binary "@$OUTPUT_FILE" "$UPLOAD_URL" \
|
|
|
|
| sed 's/\r\n/\n/' \
|
2017-08-03 04:40:39 -04:00
|
|
|
| tee /dev/fd/3
|
2017-05-12 15:07:51 -04:00
|
|
|
)
|
2017-08-03 04:40:39 -04:00
|
|
|
readonly isHidden=$([[ `echo $output | grep 'non-public'` ]] && echo "true" || echo "")
|
|
|
|
readonly httpCode=$(echo "$output" | tail -1 | sed 's/HTTP_CODE: //')
|
2017-03-02 18:58:31 -05:00
|
|
|
|
2017-05-12 15:07:51 -04:00
|
|
|
# Exit with an error if the request failed.
|
|
|
|
# (Ignore 409 failures, which mean trying to re-deploy for the same PR/SHA.)
|
2017-08-03 04:40:39 -04:00
|
|
|
if [[ $httpCode -lt 200 ]] || ([[ $httpCode -ge 400 ]] && [[ $httpCode -ne 409 ]]); then
|
2017-05-12 15:07:51 -04:00
|
|
|
exit 1
|
|
|
|
fi
|
2017-03-31 19:24:25 -04:00
|
|
|
|
2017-06-18 18:17:10 -04:00
|
|
|
# Run PWA-score tests (unless the deployment is not public yet;
|
|
|
|
# i.e. it could not be automatically verified).
|
2017-08-03 04:40:39 -04:00
|
|
|
if [[ $httpCode -ne 202 ]] && [[ "$isHidden" != "true" ]]; then
|
2017-06-30 05:09:53 -04:00
|
|
|
yarn test-pwa-score -- "$DEPLOYED_URL" "$MIN_PWA_SCORE"
|
2017-06-18 18:17:10 -04:00
|
|
|
fi
|
2017-05-12 15:07:51 -04:00
|
|
|
)
|