aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander <4584443+DragonStuff@users.noreply.github.com>2021-08-28 10:32:35 +0900
committerAlexander <4584443+DragonStuff@users.noreply.github.com>2021-08-28 10:32:35 +0900
commit4f452b71c9d84c52794e66cd84730e6618a405dc (patch)
tree3e9bed63b3090252dd57f70a3f235914b89cd23e
parent3fddbefdb51ad5be5ead6cac533d3c04da4a9a8f (diff)
downloadseaweedfs-4f452b71c9d84c52794e66cd84730e6618a405dc.tar.xz
seaweedfs-4f452b71c9d84c52794e66cd84730e6618a405dc.zip
feature(ci): add additional platforms to release
-rw-r--r--.github/workflows/release.yml14
-rw-r--r--.github/workflows/release_binaries.yml16
2 files changed, 25 insertions, 5 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 41ac40dc2..85f746c25 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -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:
diff --git a/.github/workflows/release_binaries.yml b/.github/workflows/release_binaries.yml
index ca3457c8b..ff8f98c63 100644
--- a/.github/workflows/release_binaries.yml
+++ b/.github/workflows/release_binaries.yml
@@ -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: