Remove now useless override of defaults #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |