From 90cad53afb207e3a0b98cca388b9df5fbdff877c Mon Sep 17 00:00:00 2001 From: Aaron Louie Date: Wed, 23 Sep 2020 15:36:56 -0400 Subject: [PATCH] Removes some unnecessary DevOps stuff. --- .travis.yml | 1 - deploy.sh | 7 ------- 2 files changed, 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 964045a..ac841bd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,7 +21,6 @@ install: env: global: - TESTING=true - - PB_ENABLED=false - SQLALCHEMY_DATABASE_URI="postgresql://postgres:@localhost:5432/communicator_test" script: diff --git a/deploy.sh b/deploy.sh index 5dc8261..f75eb2a 100755 --- a/deploy.sh +++ b/deploy.sh @@ -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"