Sync common Makefile #1650
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: KinD tests | |
on: | |
push: | |
branches: | |
- main | |
- release-[0-9]+.[0-9]+ | |
pull_request: | |
branches: | |
- main | |
- release-[0-9]+.[0-9]+ | |
env: | |
RELEASE_BRANCH: ${{ github.event.pull_request.base.ref || github.ref_name }} | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
kind-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
# The "minimum" tag is set in the Makefile | |
# KinD tags: https://hub.docker.com/r/kindest/node/tags | |
kind: | |
- 'minimum' | |
- 'latest' | |
hosted_mode: | |
- "true" | |
- "false" | |
name: KinD tests | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Create KinD Cluster (${{ matrix.kind }}) and deploy components | |
env: | |
KIND_VERSION: ${{ matrix.kind }} | |
HOSTED_MODE: ${{ matrix.hosted_mode }} | |
run: | | |
./build/manage-clusters.sh | |
- name: Ensure Service Account kubeconfig | |
run: | | |
make kind-controller-kubeconfig | |
make kind-ensure-sa | |
- if: matrix.hosted_mode == 'false' | |
name: E2E tests | |
run: | | |
export GOPATH=$(go env GOPATH) | |
make wait-for-work-agent | |
make e2e-test-coverage | |
- if: matrix.hosted_mode == 'true' | |
name: E2E tests hosted mode | |
run: | | |
export GOPATH=$(go env GOPATH) | |
make wait-for-work-agent | |
make e2e-test-hosted-mode | |
- name: Test Coverage and Report Generation | |
if: matrix.hosted_mode == 'false' | |
run: | | |
make test-coverage | tee report_unit.json | |
make coverage-verify | |
make gosec-scan | |
cat gosec.json | |
- name: Store the GitHub triggering event for the sonarcloud workflow | |
if: | | |
matrix.kind == 'latest' && | |
matrix.hosted_mode == 'false' && | |
github.repository_owner == 'stolostron' | |
run: | | |
cat <<EOF > event.json | |
${{ toJSON(github.event) }} | |
EOF | |
- name: Upload artifacts for the sonarcloud workflow | |
if: | | |
matrix.kind == 'latest' && | |
matrix.hosted_mode == 'false' && | |
github.repository_owner == 'stolostron' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts | |
path: | | |
coverage*.out | |
event.json | |
gosec.json | |
- name: Debug | |
if: ${{ failure() }} | |
run: | | |
RUN_MODE="debug" ./build/manage-clusters.sh | |
- name: Clean up clusters | |
if: ${{ always() }} | |
run: | | |
RUN_MODE="delete" ./build/manage-clusters.sh |