Skip to content

Commit

Permalink
[#2203] Run kind without olm if not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
fax4ever authored and ryanemerson committed Jan 10, 2025
1 parent 73c9ff1 commit 1bd0e00
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/actions/kind/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,16 @@ runs:
run: go install sigs.k8s.io/[email protected]
shell: bash

- name: Create Kind Cluster
- name: Create Kind Cluster with OLM
if: ${{ inputs.olm == 'true' }}
run: ./scripts/ci/kind-with-olm.sh
shell: bash

- name: Create Kind Cluster without OLM
if: ${{ inputs.olm == 'false' }}
run: ./scripts/ci/kind.sh
shell: bash

- name: Build Operator Image
run: make operator-build operator-push IMG="localhost:5001/infinispan-operator"
shell: bash
Expand Down

0 comments on commit 1bd0e00

Please sign in to comment.