Skip to content

Commit

Permalink
Merge pull request #698 from broadinstitute/ct-remove-docker-travis-wait
Browse files Browse the repository at this point in the history
remove travis_wait from remote repo docker build
  • Loading branch information
dpark01 committed Oct 19, 2017
2 parents da56e40 + db1f544 commit db53e0f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions travis/trigger-tests-in-other-repo.sh
Expand Up @@ -13,13 +13,13 @@ if [ "$JOB_NUMBER" == "1" ]; then
echo "TRAVIS_ACCESS_TOKEN_FOR_OTHER_REPO is defined. Triggering downstream repo..."
# if this is a tagged release add that information to the dependent build request
if [ -n "$TRAVIS_TAG" ]; then
./travis/trigger-travis.sh --script "travis_wait 75 env UPSTREAM_BRANCH=$TRAVIS_BRANCH UPSTREAM_TAG=$TRAVIS_TAG ./travis/tests-unit.sh" broadinstitute viral-ngs-deploy $TRAVIS_ACCESS_TOKEN_FOR_OTHER_REPO #"UPSTREAM_BRANCH=$TRAVIS_BRANCH UPSTREAM_TAG=$TRAVIS_TAG"
./travis/trigger-travis.sh --script "env UPSTREAM_BRANCH=$TRAVIS_BRANCH UPSTREAM_TAG=$TRAVIS_TAG ./travis/tests-unit.sh" broadinstitute viral-ngs-deploy $TRAVIS_ACCESS_TOKEN_FOR_OTHER_REPO #"UPSTREAM_BRANCH=$TRAVIS_BRANCH UPSTREAM_TAG=$TRAVIS_TAG"
else
./travis/trigger-travis.sh --script "travis_wait 75 env UPSTREAM_BRANCH=$TRAVIS_BRANCH ./travis/tests-unit.sh" broadinstitute viral-ngs-deploy $TRAVIS_ACCESS_TOKEN_FOR_OTHER_REPO #"UPSTREAM_BRANCH=$TRAVIS_BRANCH"
./travis/trigger-travis.sh --script "env UPSTREAM_BRANCH=$TRAVIS_BRANCH ./travis/tests-unit.sh" broadinstitute viral-ngs-deploy $TRAVIS_ACCESS_TOKEN_FOR_OTHER_REPO #"UPSTREAM_BRANCH=$TRAVIS_BRANCH"
fi
else
echo "TRAVIS_ACCESS_TOKEN_FOR_OTHER_REPO is undefined. Check the secure variable."
fi
else
echo "Not triggering, this is not the first job in the upstream build matrix."
fi
fi

0 comments on commit db53e0f

Please sign in to comment.