aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander <4584443+DragonStuff@users.noreply.github.com>2021-08-28 11:23:20 +0900
committerAlexander <4584443+DragonStuff@users.noreply.github.com>2021-08-28 11:23:20 +0900
commit5a10f27c8d599a15779358023330928c3b19da3c (patch)
treef2e7c536dd7f5af9732cafa0e44ee0252d490e9b
parent46e78e9b3ef7b3a48553411ff56ef2dcf54ea5b3 (diff)
downloadseaweedfs-5a10f27c8d599a15779358023330928c3b19da3c.tar.xz
seaweedfs-5a10f27c8d599a15779358023330928c3b19da3c.zip
fix(ci): remove ppc64le and s390x support
-rw-r--r--.github/workflows/binary_test.yml10
-rw-r--r--.github/workflows/container_latest.yml4
-rw-r--r--.github/workflows/container_release.yml4
-rw-r--r--.github/workflows/container_test.yml2
-rw-r--r--.github/workflows/release.yml10
-rw-r--r--.github/workflows/release_binaries.yml10
6 files changed, 8 insertions, 32 deletions
diff --git a/.github/workflows/binary_test.yml b/.github/workflows/binary_test.yml
index aa7d3dbf4..ed138ca31 100644
--- a/.github/workflows/binary_test.yml
+++ b/.github/workflows/binary_test.yml
@@ -13,24 +13,16 @@ jobs:
strategy:
matrix:
goos: [linux, windows, darwin, freebsd, netbsd, openbsd]
- goarch: [amd64, arm, arm64, 386, ppc64le, s390x]
+ goarch: [amd64, arm, arm64, 386]
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
concurrency:
group: ${{ github.head_ref }}/binary_test/${{ matrix.goos }}/${{ matrix.goarch }}
diff --git a/.github/workflows/container_latest.yml b/.github/workflows/container_latest.yml
index b55922df9..ded3636fc 100644
--- a/.github/workflows/container_latest.yml
+++ b/.github/workflows/container_latest.yml
@@ -55,7 +55,7 @@ jobs:
context: ./docker
push: ${{ github.event_name != 'pull_request' }}
file: ./docker/Dockerfile
- platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x,linux/386,linux/arm/v7,linux/arm/v6
+ platforms: linux/amd64,linux/arm64,linux/386,linux/arm/v7,linux/arm/v6
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
@@ -109,6 +109,6 @@ jobs:
context: ./docker
push: ${{ github.event_name != 'pull_request' }}
file: ./docker/Dockerfile.go_build
- platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x,linux/386,linux/arm/v7,linux/arm/v6
+ platforms: linux/amd64,linux/arm64,linux/386,linux/arm/v7,linux/arm/v6
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
diff --git a/.github/workflows/container_release.yml b/.github/workflows/container_release.yml
index 3c66c7215..ba4d2eeb9 100644
--- a/.github/workflows/container_release.yml
+++ b/.github/workflows/container_release.yml
@@ -59,7 +59,7 @@ jobs:
context: ./docker
push: ${{ github.event_name != 'pull_request' }}
file: ./docker/Dockerfile.go_build
- platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x,linux/386,linux/arm/v7,linux/arm/v6
+ platforms: linux/amd64,linux/arm64,linux/386,linux/arm/v7,linux/arm/v6
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
build-large:
@@ -114,6 +114,6 @@ jobs:
context: ./docker
push: ${{ github.event_name != 'pull_request' }}
file: ./docker/Dockerfile.go_build_large
- platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x,linux/386,linux/arm/v7,linux/arm/v6
+ platforms: linux/amd64,linux/arm64,linux/386,linux/arm/v7,linux/arm/v6
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
diff --git a/.github/workflows/container_test.yml b/.github/workflows/container_test.yml
index 122248b14..a2e94b7bb 100644
--- a/.github/workflows/container_test.yml
+++ b/.github/workflows/container_test.yml
@@ -44,6 +44,6 @@ jobs:
context: ./docker
push: ${{ github.event_name != 'pull_request' }}
file: ./docker/Dockerfile
- platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x,linux/386,linux/arm/v7,linux/arm/v6
+ platforms: linux/amd64,linux/arm64,linux/386,linux/arm/v7,linux/arm/v6
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 85f746c25..e1105e5d9 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -12,24 +12,16 @@ jobs:
strategy:
matrix:
goos: [linux, windows, darwin, freebsd, netbsd, openbsd]
- goarch: [amd64, arm, arm64, 386, ppc64le, s390x]
+ goarch: [amd64, arm, arm64, 386]
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:
diff --git a/.github/workflows/release_binaries.yml b/.github/workflows/release_binaries.yml
index ff8f98c63..9d44209f6 100644
--- a/.github/workflows/release_binaries.yml
+++ b/.github/workflows/release_binaries.yml
@@ -16,24 +16,16 @@ jobs:
strategy:
matrix:
goos: [linux, windows, darwin, freebsd, netbsd, openbsd]
- goarch: [amd64, arm, arm64, 386, ppc64le, s390x]
+ goarch: [amd64, arm, arm64, 386]
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: