build: temporarily disable building and testing of documentation examples

This is due to protractor typings issue that breaks the compilation.
This commit is contained in:
Igor Minar 2016-09-12 23:05:56 -07:00
parent 42a287fabf
commit 730415e048
2 changed files with 4 additions and 2 deletions

View File

@ -131,4 +131,5 @@ do
fi
done
./modules/@angular/examples/build.sh
# TODO(i): uncomment once the protractor typings issue is resolved
#./modules/@angular/examples/build.sh

View File

@ -37,7 +37,8 @@ if [[ ${TRAVIS} ]]; then
sh -e /etc/init.d/xvfb start
fi
NODE_PATH=$NODE_PATH:./dist/all $(npm bin)/protractor ./protractor-e2e.conf.js --bundles=true
NODE_PATH=$NODE_PATH:./dist/all $(npm bin)/protractor ./protractor-examples-e2e.conf.js --bundles=true
# TODO(i): uncomment once the protractor typings issue is resolved
#NODE_PATH=$NODE_PATH:./dist/all $(npm bin)/protractor ./protractor-examples-e2e.conf.js --bundles=true
NODE_PATH=$NODE_PATH:./dist/all $(npm bin)/protractor ./protractor-perf.conf.js --bundles=true --dryrun
echo 'travis_fold:end:test.e2e.localChrome'