From 730415e0486d2d8bf5abae3edca247a958083e0f Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Mon, 12 Sep 2016 23:05:56 -0700 Subject: [PATCH] build: temporarily disable building and testing of documentation examples This is due to protractor typings issue that breaks the compilation. --- build.sh | 3 ++- scripts/ci-lite/test_e2e.sh | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index c55799dc3f..ea085cbdcd 100755 --- a/build.sh +++ b/build.sh @@ -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 diff --git a/scripts/ci-lite/test_e2e.sh b/scripts/ci-lite/test_e2e.sh index ae68d17ed7..e355998bcf 100755 --- a/scripts/ci-lite/test_e2e.sh +++ b/scripts/ci-lite/test_e2e.sh @@ -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'