2016-04-28 20:50:03 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2017-03-02 03:22:24 -05:00
|
|
|
set -u -e -o pipefail
|
2016-04-28 20:50:03 -04:00
|
|
|
|
|
|
|
# Setup environment
|
2017-03-05 04:49:10 -05: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
|
2016-04-28 20:50:03 -04:00
|
|
|
|
2017-07-20 12:40:40 -04:00
|
|
|
if [[ ${CI_MODE:-} == "bazel" ]]; then
|
|
|
|
exit 0;
|
|
|
|
fi
|
2017-02-09 12:08:16 -05:00
|
|
|
|
2017-03-02 03:22:24 -05:00
|
|
|
travisFoldStart "tsc tools"
|
|
|
|
$(npm bin)/tsc -p tools
|
2017-07-16 13:47:46 -04:00
|
|
|
$(npm bin)/tsc -p packages/tsc-wrapped/tsconfig-build.json
|
|
|
|
cp packages/tsc-wrapped/package.json dist/packages-dist/tsc-wrapped
|
|
|
|
$(npm bin)/tsc -p packages/tsc-wrapped/tsconfig.json
|
|
|
|
cp packages/tsc-wrapped/package.json dist/all/@angular/tsc-wrapped
|
2017-03-02 03:22:24 -05:00
|
|
|
travisFoldEnd "tsc tools"
|
2017-02-09 12:08:16 -05:00
|
|
|
|
|
|
|
|
2017-03-02 03:22:24 -05:00
|
|
|
travisFoldStart "tsc all"
|
2017-07-16 13:47:46 -04:00
|
|
|
node --max-old-space-size=3000 dist/packages-dist/tsc-wrapped/src/main -p packages
|
|
|
|
node --max-old-space-size=3000 dist/packages-dist/tsc-wrapped/src/main -p modules
|
2017-03-02 03:22:24 -05:00
|
|
|
travisFoldEnd "tsc all"
|
|
|
|
|
2017-01-25 12:39:01 -05:00
|
|
|
|
2017-03-02 03:22:24 -05:00
|
|
|
# TODO(i): what are these compilations here for?
|
|
|
|
travisFoldStart "tsc a bunch of useless stuff"
|
2017-07-16 13:47:46 -04:00
|
|
|
node dist/packages-dist/tsc-wrapped/src/main -p packages/core/tsconfig-build.json
|
|
|
|
node dist/packages-dist/tsc-wrapped/src/main -p packages/common/tsconfig-build.json
|
|
|
|
node dist/packages-dist/tsc-wrapped/src/main -p packages/platform-browser/tsconfig-build.json
|
|
|
|
node dist/packages-dist/tsc-wrapped/src/main -p packages/router/tsconfig-build.json
|
|
|
|
node dist/packages-dist/tsc-wrapped/src/main -p packages/forms/tsconfig-build.json
|
2017-03-02 03:22:24 -05:00
|
|
|
travisFoldEnd "tsc a bunch of useless stuff"
|
2017-01-25 12:39:01 -05:00
|
|
|
|
2017-03-02 03:22:24 -05:00
|
|
|
|
|
|
|
# Build angular.io
|
2017-03-08 17:48:20 -05:00
|
|
|
if [[ ${CI_MODE:-} == "aio" ]]; then
|
2017-03-02 03:22:24 -05:00
|
|
|
travisFoldStart "build.aio"
|
2017-05-12 15:07:51 -04:00
|
|
|
(
|
2017-03-02 03:22:24 -05:00
|
|
|
cd "`dirname $0`/../../aio"
|
2017-05-11 18:12:23 -04:00
|
|
|
yarn build
|
|
|
|
|
2017-05-23 04:36:02 -04:00
|
|
|
# If this is a PR for angular/angular@master or angular/angular@<stable-branch>, deploy a
|
|
|
|
# snapshot for previewing early (if preconditions are met) regardless of the test outcome.
|
2017-05-11 18:12:23 -04:00
|
|
|
if [[ ${TRAVIS_REPO_SLUG} == "angular/angular" ]] &&
|
2017-05-23 04:36:02 -04:00
|
|
|
([[ $TRAVIS_BRANCH == "master" ]] || [[ $TRAVIS_BRANCH == $STABLE_BRANCH ]]) &&
|
2017-05-11 18:12:23 -04:00
|
|
|
[[ $TRAVIS_PULL_REQUEST != "false" ]]; then
|
|
|
|
travisFoldStart "deploy.aio.pr-preview"
|
|
|
|
yarn deploy-preview -- --skip-build
|
|
|
|
travisFoldEnd "deploy.aio.pr-preview"
|
|
|
|
fi
|
2017-05-12 15:07:51 -04:00
|
|
|
)
|
2017-03-02 03:22:24 -05:00
|
|
|
travisFoldEnd "build.aio"
|
|
|
|
fi
|