mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
feature(ci): add additional platforms to release
This commit is contained in:
parent
3fddbefdb5
commit
4f452b71c9
12
.github/workflows/release.yml
vendored
12
.github/workflows/release.yml
vendored
|
@ -12,15 +12,23 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
goos: [linux, windows, darwin, freebsd, netbsd, openbsd]
|
goos: [linux, windows, darwin, freebsd, netbsd, openbsd]
|
||||||
goarch: [amd64, arm, arm64, 386]
|
goarch: [amd64, arm, arm64, 386, ppc64le, s390x]
|
||||||
exclude:
|
exclude:
|
||||||
- goarch: arm
|
- goarch: arm
|
||||||
goos: darwin
|
goos: darwin
|
||||||
- goarch: 386
|
- goarch: 386
|
||||||
goos: darwin
|
goos: darwin
|
||||||
|
- goarch: ppc64le
|
||||||
|
goos: darwin
|
||||||
|
- goarch: s390x
|
||||||
|
goos: darwin
|
||||||
|
- goarch: arm
|
||||||
|
goos: windows
|
||||||
- goarch: arm64
|
- goarch: arm64
|
||||||
goos: windows
|
goos: windows
|
||||||
- goarch: arm
|
- goarch: ppc64le
|
||||||
|
goos: windows
|
||||||
|
- goarch: s390x
|
||||||
goos: windows
|
goos: windows
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
16
.github/workflows/release_binaries.yml
vendored
16
.github/workflows/release_binaries.yml
vendored
|
@ -15,13 +15,25 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
goos: [linux, windows, darwin, freebsd ]
|
goos: [linux, windows, darwin, freebsd, netbsd, openbsd]
|
||||||
goarch: [amd64, arm]
|
goarch: [amd64, arm, arm64, 386, ppc64le, s390x]
|
||||||
exclude:
|
exclude:
|
||||||
- goarch: arm
|
- goarch: arm
|
||||||
goos: darwin
|
goos: darwin
|
||||||
|
- goarch: 386
|
||||||
|
goos: darwin
|
||||||
|
- goarch: ppc64le
|
||||||
|
goos: darwin
|
||||||
|
- goarch: s390x
|
||||||
|
goos: darwin
|
||||||
- goarch: arm
|
- goarch: arm
|
||||||
goos: windows
|
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 represent a sequence of tasks that will be executed as part of the job
|
||||||
steps:
|
steps:
|
||||||
|
|
Loading…
Reference in a new issue