mirror of https://github.com/Hilbis/Hilbish
36 lines
795 B
YAML
36 lines
795 B
YAML
name: Build
|
|
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
build:
|
|
name: ${{ matrix.goos }}-${{ matrix.goarch }}
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
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
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: '1.17.7'
|
|
- name: Build
|
|
run: GOARCH=${{ matrix.goarch }} go build
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: hilbish-${{ matrix.goos }}-${{ matrix.goarch }}
|
|
path: hilbish
|
|
|