Skip to content

Commit

Permalink
chore: save
Browse files Browse the repository at this point in the history
  • Loading branch information
eysi09 committed Jan 31, 2019
1 parent a6f2a4e commit 7cbbe84
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
32 changes: 16 additions & 16 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,23 +75,23 @@ commands:
description: |
Installs our go dependancies and deals with caching and loading the cache
steps:
- restore_cache:
keys:
- pkg-cache-{{ checksum "Gopkg.lock" }}
# - restore_cache:
# keys:
# - pkg-cache-{{ checksum "Gopkg.lock" }}
- run: go get -u github.com/jstemmer/go-junit-report
- run:
name: Install dep
command: |
if [ ! -d /go/src/github.com/garden-io/garden/vendor ]; then
# if [ ! -d /go/src/github.com/garden-io/garden/vendor ]; then
# This needs to match the version installed locally
curl -L -s https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64 -o /go/bin/dep
chmod +x /go/bin/dep
/go/bin/dep ensure
fi
- save_cache:
key: pkg-cache-{{ checksum "Gopkg.lock" }}
paths:
- "/go/src/github.com/garden-io/garden/vendor"
# fi
# - save_cache:
# key: pkg-cache-{{ checksum "Gopkg.lock" }}
# paths:
# - "/go/src/github.com/garden-io/garden/vendor"

docker_build:
description: Builds and Tags a Docker Image
Expand Down Expand Up @@ -312,13 +312,13 @@ workflows:
- test-cli:
requires:
- build-service
- test-service
- build-dashboard
- build-sync-docker
- build-service-docker:
requires:
- build-service
- build-dashboard
# - test-service
# - build-dashboard
# - build-sync-docker
# - build-service-docker:
# requires:
# - build-service
# - build-dashboard
master:
jobs:
# Duplicated here so we can reference steps that depends on it
Expand Down
2 changes: 1 addition & 1 deletion Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

[[constraint]]
name = "github.com/havoc-io/mutagen"
version = "v0.7.0-beta2"
version = "v0.7.0"

# [[constraint]]
# branch = "master"
Expand Down
2 changes: 1 addition & 1 deletion garden-cli/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ const ProjectPath = "/project"

// Mutagen is the synchronization tool Garden uses for syncing files from
// the host into the sync container. Expects the following version.
const MutagenVersion = "0.7.0-beta2"
const MutagenVersion = "0.7.0"

0 comments on commit 7cbbe84

Please sign in to comment.