This is an automated email from the ASF dual-hosted git repository. pcongiusti pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit c6329356b524f70ed90902ce9c0c5f0b5a958044 Author: Pasquale Congiusti <[email protected]> AuthorDate: Thu Jun 27 14:51:32 2024 +0200 chore(e2e): don't build bundle unless install wf --- .github/actions/e2e-common/action.yml | 3 +-- .github/actions/e2e-knative/action.yml | 3 +-- .github/actions/e2e-native/action.yml | 3 +-- .github/actions/e2e-telemetry/action.yml | 3 +-- 4 files changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/actions/e2e-common/action.yml b/.github/actions/e2e-common/action.yml index 01463c4fa..0a94678f1 100644 --- a/.github/actions/e2e-common/action.yml +++ b/.github/actions/e2e-common/action.yml @@ -56,8 +56,7 @@ runs: image-registry-push-host: ${{ steps.config-cluster.outputs.cluster-image-registry-push-host }} image-registry-pull-host: ${{ steps.config-cluster.outputs.cluster-image-registry-pull-host }} image-namespace: ${{ steps.config-cluster.outputs.cluster-image-namespace }} - # Builds the bundle if an OLM is available - depends on cluster being tested - build-bundle: ${{ steps.config-cluster.outputs.cluster-has-olm }} + build-bundle: false # Both can be empty and so catalog source will not be created catalog-source-name: ${{ steps.config-cluster.outputs.cluster-catalog-source-name }} catalog-source-namespace: ${{ steps.config-cluster.outputs.cluster-catalog-source-namespace }} diff --git a/.github/actions/e2e-knative/action.yml b/.github/actions/e2e-knative/action.yml index 86e001a05..84d9fb40c 100644 --- a/.github/actions/e2e-knative/action.yml +++ b/.github/actions/e2e-knative/action.yml @@ -48,8 +48,7 @@ runs: image-registry-push-host: ${{ steps.config-cluster.outputs.cluster-image-registry-push-host }} image-registry-pull-host: ${{ steps.config-cluster.outputs.cluster-image-registry-pull-host }} image-namespace: ${{ steps.config-cluster.outputs.cluster-image-namespace }} - # Builds the bundle if an OLM is available - depends on cluster being tested - build-bundle: ${{ steps.config-cluster.outputs.cluster-has-olm }} + build-bundle: false # Both can be empty and so catalog source will not be created catalog-source-name: ${{ steps.config-cluster.outputs.cluster-catalog-source-name }} catalog-source-namespace: ${{ steps.config-cluster.outputs.cluster-catalog-source-namespace }} diff --git a/.github/actions/e2e-native/action.yml b/.github/actions/e2e-native/action.yml index 6ee19a0a8..2a47aabb0 100644 --- a/.github/actions/e2e-native/action.yml +++ b/.github/actions/e2e-native/action.yml @@ -48,8 +48,7 @@ runs: image-registry-push-host: ${{ steps.config-cluster.outputs.cluster-image-registry-push-host }} image-registry-pull-host: ${{ steps.config-cluster.outputs.cluster-image-registry-pull-host }} image-namespace: ${{ steps.config-cluster.outputs.cluster-image-namespace }} - # Builds the bundle if an OLM is available - depends on cluster being tested - build-bundle: ${{ steps.config-cluster.outputs.cluster-has-olm }} + build-bundle: false # Both can be empty and so catalog source will not be created catalog-source-name: ${{ steps.config-cluster.outputs.cluster-catalog-source-name }} catalog-source-namespace: ${{ steps.config-cluster.outputs.cluster-catalog-source-namespace }} diff --git a/.github/actions/e2e-telemetry/action.yml b/.github/actions/e2e-telemetry/action.yml index d85d54964..ca52be52c 100644 --- a/.github/actions/e2e-telemetry/action.yml +++ b/.github/actions/e2e-telemetry/action.yml @@ -48,8 +48,7 @@ runs: image-registry-push-host: ${{ steps.config-cluster.outputs.cluster-image-registry-push-host }} image-registry-pull-host: ${{ steps.config-cluster.outputs.cluster-image-registry-pull-host }} image-namespace: ${{ steps.config-cluster.outputs.cluster-image-namespace }} - # Builds the bundle if an OLM is available - depends on cluster being tested - build-bundle: ${{ steps.config-cluster.outputs.cluster-has-olm }} + build-bundle: false # Both can be empty and so catalog source will not be created catalog-source-name: ${{ steps.config-cluster.outputs.cluster-catalog-source-name }} catalog-source-namespace: ${{ steps.config-cluster.outputs.cluster-catalog-source-namespace }}
