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 2023/03/02 11:17:40 UTC

[camel-k] branch release-1.12.x updated: fix(ci): e2e native action name

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

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


The following commit(s) were added to refs/heads/release-1.12.x by this push:
     new cbbfead86 fix(ci): e2e native action name
cbbfead86 is described below

commit cbbfead86e17e38c363eff3c0a05b0cae8014349
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Thu Mar 2 12:13:03 2023 +0100

    fix(ci): e2e native action name
---
 .../actions/{e2e-install-native => e2e-native}/action.yml    |  2 +-
 .../actions/{e2e-install-native => e2e-native}/exec-tests.sh |  0
 .github/workflows/native.yml                                 | 12 ++++++------
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/.github/actions/e2e-install-native/action.yml b/.github/actions/e2e-native/action.yml
similarity index 99%
rename from .github/actions/e2e-install-native/action.yml
rename to .github/actions/e2e-native/action.yml
index 70b4556f2..ef93efbde 100644
--- a/.github/actions/e2e-install-native/action.yml
+++ b/.github/actions/e2e-native/action.yml
@@ -15,7 +15,7 @@
 # limitations under the License.
 # ---------------------------------------------------------------------------
 
-name: e2e-install-native
+name: e2e-native
 description: 'End-to-End tests for install use-cases (namespaced rather than global operator so no global operator install) with native builds'
 
 inputs:
diff --git a/.github/actions/e2e-install-native/exec-tests.sh b/.github/actions/e2e-native/exec-tests.sh
similarity index 100%
rename from .github/actions/e2e-install-native/exec-tests.sh
rename to .github/actions/e2e-native/exec-tests.sh
diff --git a/.github/workflows/native.yml b/.github/workflows/native.yml
index 2b7b2ed6a..0460c6953 100644
--- a/.github/workflows/native.yml
+++ b/.github/workflows/native.yml
@@ -68,7 +68,7 @@ concurrency:
   cancel-in-progress: true
 
 jobs:
-  install-native-high-memory:
+  native-high-memory:
 
     runs-on: macos-12
 
@@ -86,14 +86,14 @@ jobs:
           -p "${{ github.event.inputs.skip-problematic }}" \
           -q "${{ github.event.inputs.log-level }}" \
           -t "${{ github.event.inputs.test-filters }}"
-    - name: Native smoke tests
-      uses: ./.github/actions/e2e-install-native
+    - name: higher memory smoke tests
+      uses: ./.github/actions/e2e-native
       with:
         cluster-config-data: ${{ secrets.E2E_CLUSTER_CONFIG }}
         cluster-kube-config-data: ${{ secrets.E2E_KUBE_CONFIG }}
         high-memory: 'true'
 
-  install-native:
+  native-lower-memory:
 
     runs-on: macos-12
 
@@ -111,8 +111,8 @@ jobs:
           -p "${{ github.event.inputs.skip-problematic }}" \
           -q "${{ github.event.inputs.log-level }}" \
           -t "${{ github.event.inputs.test-filters }}"
-    - name: Native smoke tests
-      uses: ./.github/actions/e2e-install-native
+    - name: lower memory smoke tests
+      uses: ./.github/actions/e2e-native
       with:
         cluster-config-data: ${{ secrets.E2E_CLUSTER_CONFIG }}
         cluster-kube-config-data: ${{ secrets.E2E_KUBE_CONFIG }}