diff options
| author | Alexander <4584443+DragonStuff@users.noreply.github.com> | 2021-08-28 11:23:20 +0900 |
|---|---|---|
| committer | Alexander <4584443+DragonStuff@users.noreply.github.com> | 2021-08-28 11:23:20 +0900 |
| commit | 5a10f27c8d599a15779358023330928c3b19da3c (patch) | |
| tree | f2e7c536dd7f5af9732cafa0e44ee0252d490e9b /.github/workflows/binary_test.yml | |
| parent | 46e78e9b3ef7b3a48553411ff56ef2dcf54ea5b3 (diff) | |
| download | seaweedfs-5a10f27c8d599a15779358023330928c3b19da3c.tar.xz seaweedfs-5a10f27c8d599a15779358023330928c3b19da3c.zip | |
fix(ci): remove ppc64le and s390x support
Diffstat (limited to '.github/workflows/binary_test.yml')
| -rw-r--r-- | .github/workflows/binary_test.yml | 10 |
1 files changed, 1 insertions, 9 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 }} |
