From 4a9f6b401dcb122884a314ac0e1e18de7872c73e Mon Sep 17 00:00:00 2001 From: Robert Wagner Date: Tue, 6 Nov 2018 09:31:56 -0500 Subject: [PATCH 1/2] First attempt at building inspector --- .travis.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.travis.yml b/.travis.yml index 57f3570a6d9..79d518be951 100644 --- a/.travis.yml +++ b/.travis.yml @@ -93,6 +93,16 @@ jobs: - env: - TEST_SUITE=each-package-tests + - stage: inspector tests + jdk: oraclejdk8 + script: | + echo "TRAVIS_BRANCH=$TRAVIS_BRANCH TRAVIS_PULL_REQUEST=$TRAVIS_PULL_REQUEST" + if [[ ($TRAVIS_BRANCH == master) && + ($TRAVIS_PULL_REQUEST == false) ]] ; then + curl -LO --retry 3 https://raw.github.com/mernst/plume-lib/master/bin/trigger-travis.sh + sh trigger-travis.sh emberjs ember-inspector $TRAVIS_ACCESS_TOKEN + fi + - stage: deploy env: - PUBLISH=true From 4281829f114a90b5aef9fd8c26680297f72da17d Mon Sep 17 00:00:00 2001 From: Robert Wagner Date: Tue, 6 Nov 2018 09:34:34 -0500 Subject: [PATCH 2/2] Add inspector tests to stages --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 79d518be951..3f41b7fb831 100644 --- a/.travis.yml +++ b/.travis.yml @@ -41,6 +41,7 @@ branches: stages: - basic test - additional tests + - inspector tests - name: deploy if: type IN (push)