-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#2203] Run kind without olm if not needed
- Loading branch information
1 parent
73c9ff1
commit 1bd0e00
Showing
1 changed file
with
7 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|