diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-09-07 01:44:52 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-09-07 01:44:52 -0700 |
| commit | 9ca7c322b419a0d00626807213e0aef6d07b1dfb (patch) | |
| tree | 3768d0e6ed2444296b33eb6148391c3f877ca8b6 | |
| parent | 8c6d706328253083cfd3f696ceb16e375815ef7f (diff) | |
| download | seaweedfs-9ca7c322b419a0d00626807213e0aef6d07b1dfb.tar.xz seaweedfs-9ca7c322b419a0d00626807213e0aef6d07b1dfb.zip | |
reduce resource usage
| -rw-r--r-- | .github/workflows/binaries_dev.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/binaries_release.yml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/binaries_dev.yml b/.github/workflows/binaries_dev.yml index 465694aa1..45ac2540e 100644 --- a/.github/workflows/binaries_dev.yml +++ b/.github/workflows/binaries_dev.yml @@ -25,8 +25,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - goos: [linux, windows, darwin, freebsd, netbsd, openbsd] - goarch: [amd64, arm, arm64, 386] + goos: [linux, windows, darwin, freebsd] + goarch: [amd64, arm, arm64] exclude: - goarch: arm goos: darwin diff --git a/.github/workflows/binaries_release.yml b/.github/workflows/binaries_release.yml index 81970e520..ba1c12507 100644 --- a/.github/workflows/binaries_release.yml +++ b/.github/workflows/binaries_release.yml @@ -17,8 +17,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - goos: [linux, windows, darwin, freebsd, netbsd, openbsd] - goarch: [amd64, arm, arm64, 386] + goos: [linux, windows, darwin, freebsd] + goarch: [amd64, arm, arm64] exclude: - goarch: arm goos: darwin |
