Fix missing name #6
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: e2e-test | |
on: | |
push: | |
branches: | |
- master | |
- add_kind_ci_execution | |
pull_request: | |
workflow_call: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19 | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Kind cluster | |
uses: ./.github/actions/kind-create | |
- name: run tests | |
run: | | |
go test -v -timeout 30m --kubeconfig kind.kconf | |
working-directory: test/e2e | |
- name: Collect Data | |
if: ${{ success() || failure() || cancelled() }} | |
run: | | |
echo "------------------pods ---------------------" | |
kubectl get pods -A | |
echo "------------------ KafkaClusters ---------------------" | |
kubectl get kafkaclusters -A -o yaml | |
echo "------------------svcs ---------------------" | |
kubectl get svc -A | |
echo "------------------configmaps ---------------------" | |
kubectl get configmaps -A | |
echo "------------------secrets ---------------------" | |
kubectl get secrets -A | |
- name: Test uninstall | |
run: | | |
make test-e2e | |
working-directory: test/e2e | |
- name: Collect Data | |
if: ${{ success() || failure() || cancelled() }} | |
run: | | |
echo "------------------pods ---------------------" | |
kubectl get pods -A | |
echo "------------------ KafkaClusters ---------------------" | |
kubectl get kafkaclusters -A -o yaml | |
- name: Delete kind cluster | |
uses: ./.github/actions/kind-delete |