2017-03-02 00:22:24 -08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -u -e -o pipefail
|
|
|
|
|
|
|
|
# Setup environment
|
2017-03-05 01:49:10 -08:00
|
|
|
readonly thisDir=$(cd $(dirname $0); pwd)
|
|
|
|
source ${thisDir}/_travis-fold.sh
|
|
|
|
|
|
|
|
|
|
|
|
# If the previous commands in the `script` section of .travis.yaml failed, then abort.
|
|
|
|
# The variable is not set in early stages of the build, so we default to 0 there.
|
|
|
|
# https://docs.travis-ci.com/user/environment-variables/
|
|
|
|
if [[ ${TRAVIS_TEST_RESULT=0} == 1 ]]; then
|
|
|
|
exit 1;
|
|
|
|
fi
|
2017-03-02 00:22:24 -08:00
|
|
|
|
|
|
|
|
2018-04-23 11:46:02 -07:00
|
|
|
# Don't deploy Angular.io if we are running in a fork
|
2017-02-06 20:40:28 +02:00
|
|
|
if [[ ${TRAVIS_REPO_SLUG} != "angular/angular" ]]; then
|
|
|
|
echo "Skipping deploy because this is not angular/angular."
|
2017-03-02 00:22:24 -08:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
case ${CI_MODE} in
|
2017-07-27 16:12:04 +01:00
|
|
|
aio)
|
2017-07-28 11:57:44 +01:00
|
|
|
travisFoldStart "deploy.aio"
|
|
|
|
(
|
|
|
|
cd ${TRAVIS_BUILD_DIR}/aio
|
|
|
|
yarn deploy-production
|
|
|
|
)
|
|
|
|
travisFoldEnd "deploy.aio"
|
2017-03-02 00:22:24 -08:00
|
|
|
;;
|
|
|
|
esac
|