Skip to content

Remove now useless override of defaults #26

Remove now useless override of defaults

Remove now useless override of defaults #26

Workflow file for this run

name: arm v5/6/7
on:
push:
branches:
- 'master'
paths:
- 'action.yml'
- '.github/workflows/linux_arm.yml'
jobs:
build:
strategy:
matrix:
go_arch: [arm]
go_arm: [5, 6, 7]
fail-fast: false
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22.x
id: go
- name: Build go from tip
uses: iwdgo/gotip-build@master
id: gotip
with:
go_variables: GOARCH=${{ matrix.go_arch }} GOARM=${{ matrix.go_arm}}
test_build: true
- name: Upload go executable
uses: actions/upload-artifact@v3
if: ${{ env.crosscompile == 'false' }}
with:
name: gotip-${{ env.goos }}-${{ env.goarch }}
path: go/
- name: Upload go executable
uses: actions/upload-artifact@v3
if: ${{ env.crosscompile == 'true' }}
with:
name: gotip-${{ env.goos }}-${{ env.goarch }}
path: go/bin/${{ env.goos }}_${{ env.goarch }}