Skip to content

Commit

Permalink
appveyor: fix path for gcc
Browse files Browse the repository at this point in the history
Related github.com/appveyor/ci/issues/2613.
  • Loading branch information
rjeczalik committed Mar 25, 2019
1 parent 99e3a2e commit 3c4ce66
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions appveyor.yml
Expand Up @@ -9,13 +9,18 @@ environment:
GOBIN: c:\projects\bin

install:
- set PATH=%GOBIN%;%PATH%
- rmdir c:\go /s /q
- appveyor DownloadFile https://dl.google.com/go/go1.12.1.windows-amd64.zip
- 7z x go1.12.1.windows-amd64.zip -y -oC:\ > NUL
- set PATH=%GOPATH%\bin;%PATH%
- go version
- set PATH=C:\msys64\mingw64\bin;%PATH%
- cd %APPVEYOR_BUILD_FOLDER%
- go version
- go get -v -t ./...

build_script:
- go tool vet -all .
- go vet -all .
- go build ./...
- go test -race -v ./...
- go get github.com/rjeczalik/bin/cmd/... github.com/rjeczalik/which/cmd/... github.com/rjeczalik/tools/cmd/... github.com/rjeczalik/bindata/cmd/bindata
Expand Down

0 comments on commit 3c4ce66

Please sign in to comment.