From d3462192934b1e19be561bccc793ebc4a3baedb2 Mon Sep 17 00:00:00 2001 From: Henry Jenkins Date: Sun, 4 Aug 2019 21:24:21 +0100 Subject: [PATCH 1/2] Remove dep from Travis CI Was missed from previous switch to go modules --- .travis.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 445eb11..aedf434 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,9 +3,6 @@ go: - 1.12.x install: # Fetch dependencies - - wget -O dep https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64 - - chmod +x dep - - mv dep $GOPATH/bin/dep - curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $GOPATH/bin v1.17.1 script: - ./configure && make test From 8a24dd797fb1addaf31d87b9ab9648b5590acf3f Mon Sep 17 00:00:00 2001 From: hjenkins Date: Mon, 5 Aug 2019 09:25:14 +0100 Subject: [PATCH 2/2] Download modules in travis install step --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index aedf434..0537736 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ go: install: # Fetch dependencies - curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $GOPATH/bin v1.17.1 + - GO111MODULE=on go mod download script: - ./configure && make test sudo: false