You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pc...@apache.org on 2022/10/24 11:17:29 UTC

[camel-k] branch release-1.10.x updated (50c536b6a -> bcacc777b)

This is an automated email from the ASF dual-hosted git repository.

pcongiusti pushed a change to branch release-1.10.x
in repository https://gitbox.apache.org/repos/asf/camel-k.git


    from 50c536b6a Next is 1.10.3-SNAPSHOT
     new 1031ac33c chore(ci): clean actions
     new bcacc777b fix(e2e): setting cluster for install

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/.env                                 |  1 -
 .github/actions/action-dotenv-to-setenv      |  1 -
 .github/actions/kamel-prepare-env/action.yml | 17 +----------------
 .github/workflows/builder.yml                |  3 +++
 .github/workflows/common.yml                 |  3 +++
 .github/workflows/install.yml                |  3 +++
 .github/workflows/knative.yml                |  3 +++
 .github/workflows/upgrade.yml                |  3 +++
 8 files changed, 16 insertions(+), 18 deletions(-)
 delete mode 100644 .github/.env
 delete mode 160000 .github/actions/action-dotenv-to-setenv


[camel-k] 01/02: chore(ci): clean actions

Posted by pc...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

pcongiusti pushed a commit to branch release-1.10.x
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit 1031ac33cc86d90253703710f077c0e1707b8662
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Thu Oct 20 13:21:57 2022 +0200

    chore(ci): clean actions
---
 .github/.env                                 |  1 -
 .github/actions/action-dotenv-to-setenv      |  1 -
 .github/actions/kamel-prepare-env/action.yml | 17 +----------------
 .github/workflows/builder.yml                |  3 +++
 .github/workflows/common.yml                 |  3 +++
 .github/workflows/knative.yml                |  3 +++
 .github/workflows/upgrade.yml                |  3 +++
 7 files changed, 13 insertions(+), 18 deletions(-)

diff --git a/.github/.env b/.github/.env
deleted file mode 100644
index eae28d66a..000000000
--- a/.github/.env
+++ /dev/null
@@ -1 +0,0 @@
-TEST_CLUSTER=kind
diff --git a/.github/actions/action-dotenv-to-setenv b/.github/actions/action-dotenv-to-setenv
deleted file mode 160000
index a6380f4d9..000000000
--- a/.github/actions/action-dotenv-to-setenv
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit a6380f4d905f42adb7c065db63e6d66d75b971ad
diff --git a/.github/actions/kamel-prepare-env/action.yml b/.github/actions/kamel-prepare-env/action.yml
index 0204dfd4e..90e0bc8d5 100644
--- a/.github/actions/kamel-prepare-env/action.yml
+++ b/.github/actions/kamel-prepare-env/action.yml
@@ -21,22 +21,7 @@ description: 'Initialise the test environment with tools. (Will only run once pe
 runs:
   using: "composite"
   steps:
-    #
-    # This is a docker action so its pre-builds the image prior to
-    # running it. The building occurs prior to all steps regardless
-    # of where its located to run. Therefore, it must be run prior to
-    # clean-up since that step removes all docker image in order to
-    # claim back as much space as possible.
-    #
-    # Expects env file with following vars:
-    # TEST_CLUSTER
-    #
-    - id: read-env-file
-      uses: ./.github/actions/action-dotenv-to-setenv
-      if: ${{ env.KAMEL_PREPARE_ENV != 'true' }}
-      with:
-        env-file: .github/.env
-
+  
     - name: Cleanup
       shell: bash
       if: ${{ env.KAMEL_PREPARE_ENV != 'true' }}
diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml
index 8050a3a6d..1a474b422 100644
--- a/.github/workflows/builder.yml
+++ b/.github/workflows/builder.yml
@@ -17,6 +17,9 @@
 
 name: builder
 
+env:
+  TEST_CLUSTER: kind
+
 on:
   pull_request:
     branches:
diff --git a/.github/workflows/common.yml b/.github/workflows/common.yml
index bbc948a91..9f3dbd406 100644
--- a/.github/workflows/common.yml
+++ b/.github/workflows/common.yml
@@ -17,6 +17,9 @@
 
 name: common
 
+env:
+  TEST_CLUSTER: kind
+
 on:
   pull_request:
     branches:
diff --git a/.github/workflows/knative.yml b/.github/workflows/knative.yml
index 3009fd942..309c9bfd3 100644
--- a/.github/workflows/knative.yml
+++ b/.github/workflows/knative.yml
@@ -17,6 +17,9 @@
 
 name: knative
 
+env:
+  TEST_CLUSTER: kind
+
 on:
   pull_request:
     branches:
diff --git a/.github/workflows/upgrade.yml b/.github/workflows/upgrade.yml
index 01fd3cba3..8a3ca0d87 100644
--- a/.github/workflows/upgrade.yml
+++ b/.github/workflows/upgrade.yml
@@ -17,6 +17,9 @@
 
 name: upgrade
 
+env:
+  TEST_CLUSTER: kind
+
 on:
   pull_request:
     branches:


[camel-k] 02/02: fix(e2e): setting cluster for install

Posted by pc...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

pcongiusti pushed a commit to branch release-1.10.x
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit bcacc777b39233941e86cd40076b7d70788f2840
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Mon Oct 24 09:31:49 2022 +0200

    fix(e2e): setting cluster for install
---
 .github/workflows/install.yml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.github/workflows/install.yml b/.github/workflows/install.yml
index 70ef4eef1..158b1444f 100644
--- a/.github/workflows/install.yml
+++ b/.github/workflows/install.yml
@@ -17,6 +17,9 @@
 
 name: install
 
+env:
+  TEST_CLUSTER: kind
+
 on:
   pull_request:
     branches: