Removes some unnecessary DevOps stuff.

This commit is contained in:
Aaron Louie 2020-09-23 15:36:56 -04:00
parent 6ee2d4f019
commit 90cad53afb
2 changed files with 0 additions and 8 deletions

View File

@ -21,7 +21,6 @@ install:
env:
global:
- TESTING=true
- PB_ENABLED=false
- SQLALCHEMY_DATABASE_URI="postgresql://postgres:@localhost:5432/communicator_test"
script:

View File

@ -19,15 +19,8 @@ function branch_to_tag () {
if [ "$1" == "master" ]; then echo "latest"; else echo "$1" ; fi
}
function branch_to_deploy_group() {
echo "covid";
# if [[ $1 =~ ^(rrt\/.*)$ ]]; then echo "rrt"; else echo "crconnect" ; fi
}
DOCKER_TAG=$(branch_to_tag "$TRAVIS_BRANCH")
DEPLOY_GROUP=$(branch_to_deploy_group "$TRAVIS_BRANCH")
echo "DOCKER_REPO = $DOCKER_REPO"
echo "DOCKER_TAG = $DOCKER_TAG"