mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 06:06:44 +00:00
appveyor.yml: try mingw-w64 gcc again, pass -x
This commit is contained in:
parent
cf68e45c95
commit
47d73df19e
2 changed files with 5 additions and 6 deletions
|
|
@ -7,18 +7,17 @@ version: "{branch}.{build}"
|
||||||
environment:
|
environment:
|
||||||
global:
|
global:
|
||||||
GOPATH: c:\gopath
|
GOPATH: c:\gopath
|
||||||
|
CC: c:\mingw-w64\i686-5.3.0-posix-dwarf-rt_v4-rev0\mingw32\bin\gcc.exe
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- go version
|
- go version
|
||||||
- cd c:\gopath\src\github.com\ethereum\go-ethereum
|
- "%CC% --version"
|
||||||
- set MSYSTEM=MINGW64
|
|
||||||
- C:\msys64\usr\bin\bash -l -c "gcc --version"
|
|
||||||
|
|
||||||
build_script:
|
build_script:
|
||||||
- C:\msys64\usr\bin\bash -l -c "go run build/ci.go install"
|
- go run build\ci.go install
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
- C:\msys64\usr\bin\bash -l -c "go run build/ci.go test -vet -coverage"
|
- go run build\ci.go test -vet -coverage
|
||||||
|
|
||||||
after_build:
|
after_build:
|
||||||
- go run build\ci.go archive -type zip
|
- go run build\ci.go archive -type zip
|
||||||
|
|
|
||||||
|
|
@ -148,7 +148,7 @@ func doInstall(cmdline []string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
goinstall := goTool("install", makeBuildFlags(*commitHash)...)
|
goinstall := goTool("install", makeBuildFlags(*commitHash)...)
|
||||||
goinstall.Args = append(goinstall.Args, "-v")
|
goinstall.Args = append(goinstall.Args, "-v", "-x")
|
||||||
goinstall.Args = append(goinstall.Args, packages...)
|
goinstall.Args = append(goinstall.Args, packages...)
|
||||||
build.MustRun(goinstall)
|
build.MustRun(goinstall)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue