Hilbish/.github/workflows/build.yml

36 lines
818 B
YAML
Raw Normal View History

name: Build
on:
- push
- pull_request
jobs:
build:
name: ${{ matrix.goos }}-${{ matrix.goarch }}
runs-on: ubuntu-latest
strategy:
matrix:
2022-02-28 22:53:58 +00:00
goos: [linux, windows, darwin]
goarch: ["386", amd64, arm64]
exclude:
- goarch: "386"
goos: darwin
- goarch: arm64
goos: windows
steps:
- name: Checkout sources
uses: actions/checkout@v2
2021-05-20 22:48:16 +00:00
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v2
2021-05-20 22:31:30 +00:00
with:
2022-02-27 23:38:59 +00:00
go-version: '1.17.7'
- name: Build
2022-02-28 01:00:37 +00:00
run: GOOS=${{ matrix.goos}} GOARCH=${{ matrix.goarch }} go build
2021-05-20 22:36:36 +00:00
- uses: actions/upload-artifact@v2
with:
name: hilbish-${{ matrix.goos }}-${{ matrix.goarch }}
2021-05-20 22:36:36 +00:00
path: hilbish