Skip to content

Commit

Permalink
Fixing up make
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuvesz committed Jul 18, 2023
1 parent 01ceae8 commit c08b43a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/e2e-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,12 @@ jobs:

- name: Setup Kind cluster
uses: ./.github/actions/kind-create
with:
kubeconfig: 'tests/e2e/platforms/kind/kind.kconf'

- name: run tests
run: |
make test-e2e
E2E_KUBECONFIG_FILE=${{ kubeconfig }} make test-e2e
- name: Delete kind cluster
uses: ./.github/actions/kind-delete
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ KUSTOMIZE_BASE = config/overlays/specific-manager-version

HELM_CRD_PATH = charts/kafka-operator/templates/crds.yaml

E2E_KUBECONFIG_FILE = $KUBECONFIG
E2E_KUBECONFIG_FILE = $(KUBECONFIG)

# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
ifeq (,$(shell go env GOBIN))
Expand Down

0 comments on commit c08b43a

Please sign in to comment.