2016-05-01 22:54:19 -07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -ex -o pipefail
|
|
|
|
|
|
|
|
if [[ ${TRAVIS} && ${CI_MODE} != "e2e" ]]; then
|
|
|
|
exit 0;
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
echo 'travis_fold:start:test.js'
|
|
|
|
|
|
|
|
# Setup environment
|
|
|
|
cd `dirname $0`
|
|
|
|
source ./env.sh
|
|
|
|
cd ../..
|
|
|
|
|
|
|
|
|
|
|
|
echo 'travis_fold:start:test.buildPackages'
|
|
|
|
|
|
|
|
./build.sh
|
|
|
|
|
|
|
|
echo 'travis_fold:end:test.buildPackages'
|
|
|
|
|
|
|
|
|
2016-05-27 16:22:16 -07:00
|
|
|
./scripts/ci-lite/offline_compiler_test.sh
|
2016-06-08 16:06:23 -07:00
|
|
|
./tools/typings-test/test.sh
|
2016-06-23 12:01:42 -07:00
|
|
|
$(npm bin)/gulp public-api:enforce
|
2016-05-27 16:22:16 -07:00
|
|
|
|
2016-06-30 13:34:32 -07:00
|
|
|
$(npm bin)/gulp check-cycle
|
|
|
|
|
2016-05-01 22:54:19 -07:00
|
|
|
echo 'travis_fold:start:test.e2e.localChrome'
|
|
|
|
cd dist/
|
2016-05-24 12:33:14 -07:00
|
|
|
$(npm bin)/gulp serve &
|
2016-09-07 16:04:33 -07:00
|
|
|
$(npm bin)/gulp serve-examples &
|
2016-05-01 22:54:19 -07:00
|
|
|
cd ..
|
|
|
|
if [[ ${TRAVIS} ]]; then
|
|
|
|
sh -e /etc/init.d/xvfb start
|
|
|
|
fi
|
2016-08-30 09:29:39 -07:00
|
|
|
NODE_PATH=$NODE_PATH:./dist/all $(npm bin)/protractor ./protractor-e2e.conf.js --bundles=true
|
2016-09-13 15:58:45 -07:00
|
|
|
NODE_PATH=$NODE_PATH:./dist/all $(npm bin)/protractor ./protractor-examples-e2e.conf.js --bundles=true
|
2016-08-30 09:29:39 -07:00
|
|
|
NODE_PATH=$NODE_PATH:./dist/all $(npm bin)/protractor ./protractor-perf.conf.js --bundles=true --dryrun
|
2016-05-01 22:54:19 -07:00
|
|
|
echo 'travis_fold:end:test.e2e.localChrome'
|
|
|
|
|
|
|
|
echo 'travis_fold:end:test.js'
|
2016-05-11 17:15:05 -07:00
|
|
|
|
|
|
|
if [[ ${TRAVIS} ]]; then
|
|
|
|
./scripts/publish/publish-build-artifacts.sh
|
|
|
|
fi
|