drop support govendor (#2148)

This commit is contained in:
thinkerou
2019-11-25 15:42:23 +08:00
committed by GitHub
parent e90e2ba9b3
commit 3c8e29b53c
4 changed files with 4 additions and 205 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ before_install:
- if [[ "${GO111MODULE}" = "on" ]]; then mkdir "${HOME}/go"; export GOPATH="${HOME}/go"; fi
install:
- if [[ "${GO111MODULE}" = "on" ]]; then go mod download; else make install; fi
- if [[ "${GO111MODULE}" = "on" ]]; then go mod download; fi
- if [[ "${GO111MODULE}" = "on" ]]; then export PATH="${GOPATH}/bin:${GOROOT}/bin:${PATH}"; fi
- if [[ "${GO111MODULE}" = "on" ]]; then make tools; fi