feature(ci): add additional platforms to release

This commit is contained in:
Alexander 2021-08-28 10:32:35 +09:00
parent 3fddbefdb5
commit 4f452b71c9
2 changed files with 25 additions and 5 deletions

View file

@ -11,16 +11,24 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
goos: [linux, windows, darwin, freebsd, netbsd, openbsd ]
goarch: [amd64, arm, arm64, 386]
goos: [linux, windows, darwin, freebsd, netbsd, openbsd]
goarch: [amd64, arm, arm64, 386, ppc64le, s390x]
exclude:
- goarch: arm
goos: darwin
- goarch: 386
goos: darwin
- goarch: ppc64le
goos: darwin
- goarch: s390x
goos: darwin
- goarch: arm
goos: windows
- goarch: arm64
goos: windows
- goarch: arm
- goarch: ppc64le
goos: windows
- goarch: s390x
goos: windows
steps:

View file

@ -15,13 +15,25 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
goos: [linux, windows, darwin, freebsd ]
goarch: [amd64, arm]
goos: [linux, windows, darwin, freebsd, netbsd, openbsd]
goarch: [amd64, arm, arm64, 386, ppc64le, s390x]
exclude:
- goarch: arm
goos: darwin
- goarch: 386
goos: darwin
- goarch: ppc64le
goos: darwin
- goarch: s390x
goos: darwin
- goarch: arm
goos: windows
- goarch: arm64
goos: windows
- goarch: ppc64le
goos: windows
- goarch: s390x
goos: windows
# Steps represent a sequence of tasks that will be executed as part of the job
steps: