Created
March 23, 2018 12:59
-
-
Save azihsoyn/c4c5288b86c5531472bbae4e6ede1026 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 2 | |
jobs: | |
build: | |
working_directory: /go/src/github.com/your_company/your_app | |
docker: | |
- image: circleci/golang:1.10.0 | |
environment: | |
- DEP_VERSION: 0.4.1 | |
steps: | |
- run: git config --global url.ssh://[email protected]/your_company.insteadOf https://github.com/your_company | |
- checkout | |
- restore_cache: | |
key: gopkg-{{ .Branch }}-{{ checksum "Gopkg.lock" }} | |
paths: | |
- /go/src/github.com/your_company/your_app/vendor | |
- run: | |
name: download-libraries | |
command: | | |
if [ ! -d /go/src/github.com/your_company/your_app/vendor ]; then | |
curl -L -s https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 -o /go/bin/dep | |
chmod +x /go/bin/dep | |
/go/bin/dep ensure | |
fi | |
- save_cache: | |
key: gopkg-{{ .Branch }}-{{ checksum "Gopkg.lock" }} | |
paths: | |
- /go/src/github.com/your_company/your_app/vendor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment