summaryrefslogtreecommitdiffstats
path: root/.circleci/config.yml
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2019-03-22 21:08:03 +1100
committerJesse Duffield <jessedduffield@gmail.com>2019-03-22 21:28:25 +1100
commit9d8fd3594eac927504de2be3ff8dbf32cf6b84b6 (patch)
treeb8b2bf240ca2fa9355200be8f938a7a56ad671ec /.circleci/config.yml
parente68dbeb7ebdd42a48e0a35ad436ef86be50569d7 (diff)
remove go modules
Perhaps one day we'll revisit this, but right now supporting go modules is just a headache. Dep does everything we need and it's really easy to work with, and given that supporting both simultaneously is too cumbersome, and I'm too lazy to make the switch to go modules properly, I'm sticking with go dep for now.
Diffstat (limited to '.circleci/config.yml')
-rw-r--r--.circleci/config.yml13
1 files changed, 0 insertions, 13 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 4e14c1ff5..79341761f 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -7,19 +7,6 @@ jobs:
steps:
- checkout
- run:
- name: Ensure go.mod file is up to date
- command: |
- export GO111MODULE=on
- rm go.sum
- mv go.mod /tmp/
- go mod init
- export GO111MODULE=auto
-
- if [ $(diff /tmp/go.mod go.mod|wc -l) -gt 0 ]; then
- diff /tmp/go.mod go.mod
- exit 1;
- fi
- - run:
name: Run gofmt -s
command: |
if [ $(find . ! -path "./vendor/*" -name "*.go" -exec gofmt -s -d {} \;|wc -l) -gt 0 ]; then