2021-02-23 14:04:45 +00:00
|
|
|
---
|
2020-12-21 11:10:02 +00:00
|
|
|
name: Release
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- "v*"
|
2021-10-03 11:53:37 +00:00
|
|
|
env:
|
|
|
|
GO_VERSION: "1.16"
|
|
|
|
KIND_VERSION: "v0.11.1"
|
|
|
|
KIND_IMAGE: "kindest/node:v1.21.1@sha256:69860bda5563ac81e3c0057d654b5253219618a22ec3a346306239bba8cfa1a6"
|
|
|
|
|
2020-12-21 11:10:02 +00:00
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
name: Release
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
|
|
- name: Setup Go
|
2022-04-12 11:07:32 +00:00
|
|
|
uses: actions/setup-go@v3
|
2020-12-21 11:10:02 +00:00
|
|
|
with:
|
2021-05-02 09:47:30 +00:00
|
|
|
go-version: 1.16
|
2020-12-21 11:10:02 +00:00
|
|
|
- name: Checkout code
|
2022-03-08 09:22:17 +00:00
|
|
|
uses: actions/checkout@v3
|
2022-04-06 05:12:04 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2020-12-21 11:10:02 +00:00
|
|
|
- name: Run unit tests
|
|
|
|
run: make tests
|
2021-09-12 22:15:28 +00:00
|
|
|
- name: Setup Kubernetes cluster (KIND)
|
|
|
|
uses: engineerd/setup-kind@v0.5.0
|
|
|
|
with:
|
|
|
|
version: ${{ env.KIND_VERSION }}
|
|
|
|
image: ${{ env.KIND_IMAGE }}
|
|
|
|
name: kube-bench
|
|
|
|
- name: Test connection to Kubernetes cluster
|
|
|
|
run: |
|
|
|
|
kubectl cluster-info
|
|
|
|
kubectl describe node
|
2020-12-23 10:48:17 +00:00
|
|
|
- name: Run integration tests
|
2021-09-12 22:15:28 +00:00
|
|
|
run: |
|
2021-10-03 12:32:27 +00:00
|
|
|
make integration-test
|
2021-09-12 22:15:28 +00:00
|
|
|
- name: Compare output with expected output
|
|
|
|
uses: GuillaumeFalourd/diff-action@v1
|
|
|
|
with:
|
|
|
|
first_file_path: ./test.data
|
|
|
|
second_file_path: integration/testdata/Expected_output.data
|
|
|
|
expected_result: PASSED
|
2020-12-21 11:10:02 +00:00
|
|
|
- name: Release
|
|
|
|
uses: goreleaser/goreleaser-action@v2
|
|
|
|
with:
|
2022-04-06 05:12:04 +00:00
|
|
|
distribution: goreleaser
|
|
|
|
version: v1.7.0
|
2020-12-21 11:10:02 +00:00
|
|
|
args: release --rm-dist
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|