sq/.github/workflows/go.yml

223 lines
5.7 KiB
YAML
Raw Normal View History

name: Main pipeline
on:
push:
paths-ignore:
- '**.md'
- 'sq.json' # This is updated by scoop; no need to run a new build
env:
GO_VERSION: 1.19.3
GORELEASER_VERSION: 1.12.3
2020-03-03 13:19:04 +03:00
2020-08-06 20:58:47 +03:00
jobs:
go-test:
2020-08-06 20:58:47 +03:00
strategy:
matrix:
os: [ macos-12, ubuntu-22.04, windows-2022]
2020-08-06 20:58:47 +03:00
runs-on: ${{ matrix.os }}
2020-03-03 13:19:04 +03:00
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
2020-08-06 20:58:47 +03:00
with:
go-version: ${{ env.GO_VERSION }}
- name: Build
run: go build -v ./...
2020-08-06 20:58:47 +03:00
- name: Test
run: go test -v ./...
build-binaries-darwin:
needs: go-test
if: startsWith(github.ref, 'refs/tags/v')
runs-on: macos-12
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: GoReleaser (build darwin binaries)
uses: goreleaser/goreleaser-action@v3
with:
distribution: goreleaser-pro
version: ${{ env.GORELEASER_VERSION }}
args: build --skip-validate --rm-dist -f .goreleaser-darwin.yml
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
- name: Upload assets (darwin)
uses: actions/upload-artifact@v3
with:
name: dist-darwin
path: dist-darwin
build-binaries-linux-amd64:
needs: go-test
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: GoReleaser (build linux-amd64 binaries)
uses: goreleaser/goreleaser-action@v3
with:
distribution: goreleaser-pro
version: ${{ env.GORELEASER_VERSION }}
args: build --skip-validate --rm-dist -f .goreleaser-linux-amd64.yml
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
- name: Upload assets (linux-amd64)
uses: actions/upload-artifact@v3
with:
name: dist-linux-amd64
path: dist-linux
build-binaries-linux-arm64:
needs: go-test
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
2020-08-06 20:58:47 +03:00
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: Install toolchain dependencies
2020-08-06 20:58:47 +03:00
run: |
sudo apt update
sudo apt install -y gcc-aarch64-linux-gnu
2020-08-06 20:58:47 +03:00
- name: GoReleaser (build linux-arm64 binaries)
uses: goreleaser/goreleaser-action@v3
with:
distribution: goreleaser-pro
version: ${{ env.GORELEASER_VERSION }}
args: build --skip-validate --rm-dist -f .goreleaser-linux-arm64.yml
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
2020-08-06 20:58:47 +03:00
- name: Upload assets (linux-arm64)
uses: actions/upload-artifact@v3
with:
name: dist-linux-arm64
path: dist-linux
build-binaries-windows:
needs: go-test
if: startsWith(github.ref, 'refs/tags/v')
runs-on: windows-2022
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: GoReleaser (build windows binaries)
uses: goreleaser/goreleaser-action@v3
with:
distribution: goreleaser-pro
version: ${{ env.GORELEASER_VERSION }}
args: build --skip-validate --rm-dist -f .goreleaser-windows.yml
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
- name: Upload assets (windows)
uses: actions/upload-artifact@v3
with:
name: dist-windows
path: dist-windows
publish:
if: startsWith(github.ref, 'refs/tags/v')
needs: [ build-binaries-darwin, build-binaries-linux-amd64, build-binaries-linux-arm64, build-binaries-windows ]
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION }}
- name: Download darwin artifacts
uses: actions/download-artifact@v3
with:
name: dist-darwin
path: dist-darwin
- name: Download linux-amd64 artifacts
uses: actions/download-artifact@v3
with:
name: dist-linux-amd64
path: dist-linux
- name: Download linux-arm64 artifacts
uses: actions/download-artifact@v3
with:
name: dist-linux-arm64
path: dist-linux
- name: Download windows artifacts
uses: actions/download-artifact@v3
with:
name: dist-windows
path: dist-windows
- name: GoReleaser (publish)
uses: goreleaser/goreleaser-action@v3
with:
distribution: goreleaser-pro
version: ${{ env.GORELEASER_VERSION }}
args: release -f .goreleaser.yml
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
FURY_TOKEN: ${{ secrets.FURY_TOKEN }}