Commit ef3d63e3 authored by Matthew Holt's avatar Matthew Holt

Update CI scripts for Go 1.9

parent 4b1b329e
language: go language: go
go: go:
- 1.8.3 - 1.9
- tip - tip
matrix: matrix:
...@@ -31,9 +31,7 @@ install: ...@@ -31,9 +31,7 @@ install:
script: script:
- gometalinter --disable-all -E vet -E gofmt -E misspell -E ineffassign -E goimports -E deadcode --tests --vendor ./... - gometalinter --disable-all -E vet -E gofmt -E misspell -E ineffassign -E goimports -E deadcode --tests --vendor ./...
- vendorcheck ./... - vendorcheck ./...
# TODO: When Go 1.9 is released, replace $(go list) subcommand with ./... because vendor folder should be ignored - go test -race ./...
- go test -race $(go list ./... | grep -v vendor)
after_script: after_script:
# TODO: When Go 1.9 is released, replace $(go list) subcommand with ./... because vendor folder should be ignored - golint ./...
- golint $(go list ./... | grep -v vendor)
...@@ -9,8 +9,8 @@ environment: ...@@ -9,8 +9,8 @@ environment:
install: install:
- rmdir c:\go /s /q - rmdir c:\go /s /q
- appveyor DownloadFile https://storage.googleapis.com/golang/go1.8.3.windows-amd64.zip - appveyor DownloadFile https://storage.googleapis.com/golang/go1.9.windows-amd64.zip
- 7z x go1.8.3.windows-amd64.zip -y -oC:\ > NUL - 7z x go1.9.windows-amd64.zip -y -oC:\ > NUL
- set PATH=%GOPATH%\bin;%PATH% - set PATH=%GOPATH%\bin;%PATH%
- go version - go version
- go env - go env
...@@ -28,12 +28,10 @@ build: off ...@@ -28,12 +28,10 @@ build: off
test_script: test_script:
- gometalinter --disable-all -E vet -E gofmt -E misspell -E ineffassign -E goimports -E deadcode --tests --vendor ./... - gometalinter --disable-all -E vet -E gofmt -E misspell -E ineffassign -E goimports -E deadcode --tests --vendor ./...
- vendorcheck ./... - vendorcheck ./...
# TODO: When Go 1.9 comes out, replace this whole line with `go test -race ./...` b/c vendor folder should be ignored - go test -race ./...
- for /f "" %%G in ('go list ./... ^| find /i /v "/vendor/"') do (go test -race %%G & IF ERRORLEVEL == 1 EXIT 1)
after_test: after_test:
# TODO: When Go 1.9 comes out, replace this whole line with `golint ./...` b/c vendor folder should be ignored - golint ./...
- for /f "" %%G in ('go list ./... ^| find /i /v "/vendor/"') do (golint %%G & IF ERRORLEVEL == 1 EXIT 1)
deploy: off deploy: off
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment