Skip to content

Commit

Permalink
Don't run mingw install on AppVeyor when it's already installed
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewkroh committed Mar 8, 2016
1 parent 2c147d1 commit 4820582
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,11 @@ install:
- ps: c:\gopath\src\github.com\elastic\beats\libbeat\scripts\install-go.ps1 -version 1.5.3
- set PATH=%GOROOT%\bin;%PATH%
# AppVeyor installed mingw is 32-bit only.
- cinst mingw > mingw-install.txt
- ps: Push-AppveyorArtifact mingw-install.txt
- ps: >-
if(!(Test-Path "C:\tools\mingw64\bin\gcc.exe")) {
cinst mingw > mingw-install.txt
Push-AppveyorArtifact mingw-install.txt
}
- set PATH=C:\tools\mingw64\bin;%GOROOT%\bin;%PATH%
- set PATH=%GOPATH%\bin;%PATH%
- go get github.com/pierrre/gotestcover
Expand Down

0 comments on commit 4820582

Please sign in to comment.