安装GCC

pull/51/head
lifei6671 2017-05-30 19:42:31 +08:00
parent 58ec54490c
commit 21ba3bf9ca
1 changed files with 12 additions and 1 deletions

View File

@ -7,10 +7,21 @@ environment:
GOPATH: c:\gopath GOPATH: c:\gopath
GOVERSION: 1.8 GOVERSION: 1.8
build: false build: false
deploy: true deploy: true
install: install:
- ps: if(true)
{
curl -outfile mw64.7z "http://libgd.blob.core.windows.net/mingw/x86_64-4.9.1-release-posix-seh-rt_v3-rev1.7z";
if((Get-FileHash mw64.7z -Algorithm SHA1).Hash -ne "91A35AE296C1A71802AB0C7228EE57F9AAC5D7C7")
{
echo "Invalid file hash";
exit 1;
};
7z x -oC:\ mw64.7z | out-null;
}
- echo %PATH% - echo %PATH%
- echo %GOPATH% - echo %GOPATH%
- go version - go version
@ -18,7 +29,7 @@ install:
- go get -d ./... - go get -d ./...
test_script: test_script:
- set GO_ENABLED=1 - set GO_ENABLED=1
- go build -x -v -tags "pam" -ldflags "-w" - go build -x -v -tags "pam" -ldflags "-w"
notifications: notifications: