![John Muchovej](/assets/img/avatar_default.png)
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. 😅
16 lines
388 B
YAML
16 lines
388 B
YAML
name: Build Go binaries
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@master
|
|
|
|
- name: Compile
|
|
uses: xxxserxxx/actions/golang-build@master
|
|
with:
|
|
args: darwin/amd64/1 linux/amd64 linux/386 linux/arm64 linux/arm7 linux/arm6 linux/arm5 windows/amd64 windows/386 freebsd/amd64 freebsd/386
|