2017-02-06 20:40:28 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2017-03-05 16:32:44 +02:00
|
|
|
# WARNING: NGBUILDS_IO_KEY should NOT be printed.
|
|
|
|
set +x -eu -o pipefail
|
2017-05-12 11:08:45 +03:00
|
|
|
exec 3>&1
|
2017-02-06 20:40:28 +02:00
|
|
|
|
|
|
|
|
2017-05-12 01:02:13 +03: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 13:29:39 +03: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 11:08:45 +03:00
|
|
|
|
2017-05-12 01:02:13 +03: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 20:40:28 +02:00
|
|
|
|
2017-05-12 22:07:51 +03:00
|
|
|
(
|
|
|
|
cd "`dirname $0`/.."
|
2017-03-03 01:58:31 +02:00
|
|
|
|
2017-05-12 22:07:51 +03: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-12 01:02:13 +03:00
|
|
|
exit 0
|
2017-05-12 22:07:51 +03:00
|
|
|
fi
|
2017-05-12 01:02:13 +03:00
|
|
|
|
2017-05-12 22:07:51 +03:00
|
|
|
# Build the app
|
2017-08-03 11:40:39 +03:00
|
|
|
if [[ "$skipBuild" != "true" ]]; then
|
2017-05-12 22:07:51 +03:00
|
|
|
yarn build
|
|
|
|
fi
|
|
|
|
tar --create --gzip --directory "$INPUT_DIR" --file "$OUTPUT_FILE" .
|
2017-03-03 01:58:31 +02:00
|
|
|
|
2017-05-12 22:07:51 +03:00
|
|
|
# Deploy to staging
|
2017-08-03 11:40:39 +03:00
|
|
|
readonly output=$(
|
2017-05-12 22:07:51 +03: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 11:40:39 +03:00
|
|
|
| tee /dev/fd/3
|
2017-05-12 22:07:51 +03:00
|
|
|
)
|
2017-08-03 11:40:39 +03:00
|
|
|
readonly isHidden=$([[ `echo $output | grep 'non-public'` ]] && echo "true" || echo "")
|
|
|
|
readonly httpCode=$(echo "$output" | tail -1 | sed 's/HTTP_CODE: //')
|
2017-03-03 01:58:31 +02:00
|
|
|
|
2017-05-12 22:07:51 +03: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 11:40:39 +03:00
|
|
|
if [[ $httpCode -lt 200 ]] || ([[ $httpCode -ge 400 ]] && [[ $httpCode -ne 409 ]]); then
|
2017-05-12 22:07:51 +03:00
|
|
|
exit 1
|
|
|
|
fi
|
2017-04-01 02:24:25 +03:00
|
|
|
|
2017-06-19 01:17:10 +03:00
|
|
|
# Run PWA-score tests (unless the deployment is not public yet;
|
|
|
|
# i.e. it could not be automatically verified).
|
2017-08-03 11:40:39 +03:00
|
|
|
if [[ $httpCode -ne 202 ]] && [[ "$isHidden" != "true" ]]; then
|
2017-09-23 17:25:11 +03:00
|
|
|
yarn test-pwa-score "$DEPLOYED_URL" "$MIN_PWA_SCORE"
|
2017-06-19 01:17:10 +03:00
|
|
|
fi
|
2018-04-02 11:27:22 +03:00
|
|
|
|
|
|
|
# Check the bundle sizes.
|
|
|
|
yarn payload-size
|
2017-05-12 22:07:51 +03:00
|
|
|
)
|