2021-02-23 14:04:45 +00:00
|
|
|
---
|
2020-12-21 11:10:02 +00:00
|
|
|
name: Release
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- "v*"
|
|
|
|
jobs:
|
|
|
|
release:
|
|
|
|
name: Release
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
|
|
- name: Setup Go
|
2021-05-02 09:47:30 +00:00
|
|
|
uses: actions/setup-go@v2
|
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
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- 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
|
|
|
|
- name: Apply jobs
|
|
|
|
run: kubectl apply -f job.yaml
|
2020-12-23 10:48:17 +00:00
|
|
|
- name: Run integration tests
|
2021-09-12 22:15:28 +00:00
|
|
|
run: |
|
|
|
|
kubectl wait --for=condition=complete job.batch/kube-bench --timeout=60s
|
|
|
|
kubectl logs job/kube-bench > ./test.data
|
|
|
|
- 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:
|
2021-06-09 12:34:39 +00:00
|
|
|
version: v0.169.0
|
2020-12-21 11:10:02 +00:00
|
|
|
args: release --rm-dist
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|