From 70caa2a819ecd97e70de809a0dd8601842a794eb Mon Sep 17 00:00:00 2001 From: Aaron Louie Date: Mon, 3 Aug 2020 16:12:02 -0400 Subject: [PATCH] Uses dev branch for e2e testing on all feature branches --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index cd33698..2cd7a05 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,9 @@ services: before_install: - | - if [[ $TRAVIS_BRANCH =~ ^(dev|testing|demo|training|staging|rrt\/.*)$ ]]; then + if [[ $TRAVIS_BRANCH =~ ^(feature\/.*)$ ]]; then + export E2E_TAG="dev" + elif [[ $TRAVIS_BRANCH =~ ^(dev|testing|demo|training|staging|rrt\/.*)$ ]]; then export E2E_TAG="${TRAVIS_BRANCH//\//_}" else export E2E_TAG="latest"