mirror of
https://github.com/jpillora/chisel
synced 2026-06-08 15:07:02 +00:00
82 lines
2.3 KiB
YAML
82 lines
2.3 KiB
YAML
on: [push, pull_request]
|
|
name: CI
|
|
jobs:
|
|
# ================
|
|
# TEST JOB
|
|
# runs on every push and PR
|
|
# runs 2x3 times (see matrix)
|
|
# ================
|
|
test:
|
|
name: Test
|
|
strategy:
|
|
matrix:
|
|
go-version: [1.20.x]
|
|
platform: [ubuntu-latest, macos-latest, windows-latest]
|
|
runs-on: ${{ matrix.platform }}
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
- name: Build
|
|
run: go build -v -o /dev/null .
|
|
- name: Test
|
|
run: go test -v ./...
|
|
# ================
|
|
# RELEASE JOBS
|
|
# runs after a success test
|
|
# only runs on push "v*" tag
|
|
# ================
|
|
release_binaries:
|
|
name: Release Binaries
|
|
needs: test
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v3
|
|
- name: goreleaser
|
|
if: success()
|
|
uses: docker://goreleaser/goreleaser:latest
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
args: release --config .github/goreleaser.yml
|
|
release_docker:
|
|
name: Release Docker Images
|
|
needs: test
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v3
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v1
|
|
- name: Set up Docker Buildx
|
|
id: buildx
|
|
uses: docker/setup-buildx-action@v1
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: jpillora
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
- name: Docker meta
|
|
id: docker_meta
|
|
uses: docker/metadata-action@v4
|
|
with:
|
|
images: jpillora/chisel
|
|
tags: |
|
|
type=semver,pattern={{version}}
|
|
type=semver,pattern={{major}}.{{minor}}
|
|
type=semver,pattern={{major}}
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
context: .
|
|
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/386,linux/arm/v7,linux/arm/v6
|
|
push: true
|
|
tags: ${{ steps.docker_meta.outputs.tags }}
|
|
labels: ${{ steps.docker_meta.outputs.labels }}
|