mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 06:06:44 +00:00
appveyor.yml: use 32bit
This commit is contained in:
parent
bb8db6302f
commit
85de9e5d41
1 changed files with 5 additions and 5 deletions
10
appveyor.yml
10
appveyor.yml
|
|
@ -7,20 +7,20 @@ version: "{branch}.{build}"
|
||||||
environment:
|
environment:
|
||||||
global:
|
global:
|
||||||
GOPATH: c:\gopath
|
GOPATH: c:\gopath
|
||||||
PATH: c:\go16-x86;c:\mingw\bin;%PATH%
|
PATH: c:\mingw\bin;%PATH%
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- go version
|
- c:\go-x86\go version
|
||||||
- gcc --version
|
- gcc --version
|
||||||
|
|
||||||
build_script:
|
build_script:
|
||||||
- go run build\ci.go install
|
- c:\go-x86\go run build\ci.go install
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
- go run build\ci.go test -vet -coverage
|
- c:\go-x86\go run build\ci.go test -vet -coverage
|
||||||
|
|
||||||
after_build:
|
after_build:
|
||||||
- go run build\ci.go archive -type zip
|
- c:\go-x86\go run build\ci.go archive -type zip
|
||||||
|
|
||||||
artifacts:
|
artifacts:
|
||||||
- path: geth-*.zip
|
- path: geth-*.zip
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue