Add windows 32bits
This commit is contained in:
parent
d08786f64f
commit
b38c71b462
2 changed files with 6 additions and 0 deletions
|
@ -4,6 +4,7 @@ builds:
|
|||
- darwin
|
||||
- windows
|
||||
goarch:
|
||||
- "386"
|
||||
- amd64
|
||||
- arm64
|
||||
- arm
|
||||
|
@ -19,6 +20,10 @@ builds:
|
|||
goarch: arm64
|
||||
- goos: darwin
|
||||
goarch: arm
|
||||
- goos: linux
|
||||
goarch: "386"
|
||||
- goos: darwin
|
||||
goarch: "386"
|
||||
main: goreleaser.go
|
||||
hooks:
|
||||
#pre:
|
||||
|
|
|
@ -10,6 +10,7 @@ case $go_arch in
|
|||
amd64) rust_arch='x86_64' ;;
|
||||
arm64) rust_arch='aarch64' ;;
|
||||
arm) rust_arch='armv7' ;;
|
||||
386) rust_arch='i686' ;;
|
||||
*) echo "unknown arch: $go_arch" && exit 1 ;;
|
||||
esac
|
||||
case $go_os in
|
||||
|
|
Loading…
Reference in a new issue