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/12/02 11:58:52 UTC

[camel-k] branch release-1.10.x updated: chore(ci): move native into nigtly release wf

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


The following commit(s) were added to refs/heads/release-1.10.x by this push:
     new 2bd3d5dd7 chore(ci): move native into nigtly release wf
2bd3d5dd7 is described below

commit 2bd3d5dd74f21c4c11b704d78af1e7becc548072
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Wed Nov 30 11:57:40 2022 +0100

    chore(ci): move native into nigtly release wf
---
 .github/actions/release-nightly/action.yml | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/.github/actions/release-nightly/action.yml b/.github/actions/release-nightly/action.yml
index 2a3c60976..f8a7e0026 100644
--- a/.github/actions/release-nightly/action.yml
+++ b/.github/actions/release-nightly/action.yml
@@ -31,13 +31,13 @@ inputs:
   secretDockerHubUser:
     required: true
   secretDockerHubPassword:
-    required: true    
+    required: true
   secretGithubToken:
     required: true
 
 runs:
   using: "composite"
-  
+
   steps:
     - name: Set up JDK ${{ inputs.javaVersion }}
       uses: actions/setup-java@v2
@@ -48,11 +48,16 @@ runs:
       uses: actions/setup-go@v2
       with:
         go-version: ${{ inputs.goVersion }}
-    - name: Smoke tests
+    - name: Common smoke tests
       uses: ./.github/actions/e2e-common
       with:
         cluster-config-data: ${{ inputs.secretE2ECluster }}
         cluster-kube-config-data: ${{ inputs.secretE2EKube }}
+    - name: Native smoke tests
+      uses: ./.github/actions/e2e-install-native
+      with:
+        cluster-config-data: ${{ inputs.secretE2ECluster }}
+        cluster-kube-config-data: ${{ inputs.secretE2EKube }}
     - name: Cache modules
       uses: actions/cache@v1
       with:
@@ -101,7 +106,7 @@ runs:
       with:
         artifacts: "./camel-k-client*.tar.gz"
         body: |
-          Apache Camel K ${{ env.VERSION }} build for testing (unstable). This nightly release is using 
+          Apache Camel K ${{ env.VERSION }} build for testing (unstable). This nightly release is using
           an **unsupported** operator image published as `${{ env.IMAGE_NAME }}:${{ env.VERSION }}`
 
           To test it, download the client for your OS and run:
@@ -109,7 +114,7 @@ runs:
           ```
           kamel install --olm=false --maven-repository=${{ env.MAVEN_REPOSITORY }}
           ```
-          
+
           NOTE: last updated on ${{ env.UPD_DATE }}
         token: ${{ inputs.secretGithubToken }}
         draft: false