Skip to content

Commit

Permalink
Merge pull request #1918 from transcom/kl-upgrade-dep-version-check
Browse files Browse the repository at this point in the history
Upgrade dep version
  • Loading branch information
kahlouie committed Mar 28, 2019
2 parents ad75e2a + 76678ac commit 3ecc336
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Expand Up @@ -15,23 +15,23 @@ executors:
resource_class: small
working_directory: ~/go/src/github.com/transcom/mymove
docker:
- image: trussworks/circleci-docker-primary:656d30cb106702a0ce7e4a9d2a74b409c121a8e8
- image: trussworks/circleci-docker-primary:9ad70927655a601580c036d53456c70061c76cba
mymove_medium:
resource_class: medium
working_directory: ~/go/src/github.com/transcom/mymove
docker:
- image: trussworks/circleci-docker-primary:656d30cb106702a0ce7e4a9d2a74b409c121a8e8
- image: trussworks/circleci-docker-primary:9ad70927655a601580c036d53456c70061c76cba
mymove_large:
resource_class: large
working_directory: ~/go/src/github.com/transcom/mymove
docker:
- image: trussworks/circleci-docker-primary:656d30cb106702a0ce7e4a9d2a74b409c121a8e8
- image: trussworks/circleci-docker-primary:9ad70927655a601580c036d53456c70061c76cba
# `mymove_and_postgres_medium` adds a secondary postgres container to be used during testing.
mymove_and_postgres_medium:
resource_class: medium
working_directory: ~/go/src/github.com/transcom/mymove
docker:
- image: trussworks/circleci-docker-primary:656d30cb106702a0ce7e4a9d2a74b409c121a8e8
- image: trussworks/circleci-docker-primary:9ad70927655a601580c036d53456c70061c76cba
- image: postgres:10.5
environment:
- POSTGRES_PASSWORD: mysecretpassword
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -5,6 +5,7 @@
# dependencies
/vendor
/node_modules
/.vendor-new

/pkg/gen
/pkg/assets
Expand Down
2 changes: 1 addition & 1 deletion bin/check_dep_version
Expand Up @@ -2,7 +2,7 @@

set -eu -o pipefail

TARGET_VERSION="v0.5.0"
TARGET_VERSION="v0.5.1"
CURRENT_VERSION=$(dep version | grep version | cut -f2 -d':' | awk '{$1=$1};1' | head -n 1)

if [[ "$CURRENT_VERSION" = "$TARGET_VERSION" ]]; then
Expand Down

0 comments on commit 3ecc336

Please sign in to comment.