From 6a267b8d92cdbe989d7f9479ffa94c9d70b8232a Mon Sep 17 00:00:00 2001 From: John Muchovej Date: Sat, 29 Feb 2020 20:12:23 -0500 Subject: Removing darwin/386/1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Is there a need to bother building for 386? If memory serves, Apple has even dropped 32-bit support. Honestly not sure how much time it saves on builds, but figured it's best to trim out what's not really needed. 😅 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ca4c3b9..6616feb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,4 +12,4 @@ jobs: - name: Compile uses: xxxserxxx/actions/golang-build@master with: - args: darwin/amd64/1 darwin/386/1 linux/amd64 linux/386 linux/arm64 linux/arm7 linux/arm6 linux/arm5 windows/amd64 windows/386 freebsd/amd64 freebsd/386 + args: darwin/amd64/1 linux/amd64 linux/386 linux/arm64 linux/arm7 linux/arm6 linux/arm5 windows/amd64 windows/386 freebsd/amd64 freebsd/386 -- cgit v1.2.3 From 17df8b25a9a337a3b39268cf759d277f6fa17671 Mon Sep 17 00:00:00 2001 From: John Muchovej Date: Sat, 29 Feb 2020 20:13:57 -0500 Subject: Remove darwin/386/1 Similar rationale as with `build.yml` --- .github/workflows/prerelease.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index c7a8594..e060746 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -16,7 +16,7 @@ jobs: - name: Make binaries uses: xxxserxxx/actions/golang-build@master with: - args: darwin/amd64/1 darwin/386/1 linux/amd64 linux/386 linux/arm64 linux/arm7 linux/arm6 linux/arm5 windows/amd64 windows/386 freebsd/amd64 freebsd/386 + args: darwin/amd64/1 linux/amd64 linux/386 linux/arm64 linux/arm7 linux/arm6 linux/arm5 windows/amd64 windows/386 freebsd/amd64 freebsd/386 env: COMPRESS_FILES: true -- cgit v1.2.3