You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.0 KiB
25 lines
1.0 KiB
clone_depth: 5 |
|
version: "{branch}.{build}" |
|
|
|
image: |
|
- Visual Studio 2019 |
|
|
|
environment: |
|
matrix: |
|
- GETH_ARCH: amd64 |
|
GETH_CC: C:\msys64\mingw64\bin\gcc.exe |
|
PATH: C:\msys64\mingw64\bin;C:\Program Files (x86)\NSIS\;%PATH% |
|
|
|
install: |
|
- git submodule update --init --depth 1 --recursive |
|
- go version |
|
|
|
build_script: |
|
- ps: $env:VERSION = "$(git describe --always)" |
|
- go run build\ci.go install -dlgo -arch %GETH_ARCH% -cc %GETH_CC% |
|
- 7z a open-etc-pool-friends-win64-%VERSION%.zip .\build\bin\geth.exe |
|
- ps: Get-FileHash open-etc-pool-friends-win64-$env:VERSION.zip -Algorithm SHA256 |
|
- ps: Get-FileHash open-etc-pool-friends-win64-$env:VERSION.zip -Algorithm SHA256 | Out-File open-etc-pool-friends-win64-$env:VERSION.zip.sha256 |
|
- 7z a open-etc-pool-friends-alltools-win64-%VERSION%.zip .\build\bin\* |
|
- ps: Get-FileHash open-etc-pool-friends-alltools-win64-$env:VERSION.zip -Algorithm SHA256 |
|
- ps: Get-FileHash open-etc-pool-friends-alltools-win64-$env:VERSION.zip | Out-File open-etc-pool-friends-alltools-win64-$env:VERSION.zip.sha256
|
|
|