You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/04/06 05:25:38 UTC

[camel] branch camel-3.20.x updated (b18a9865c43 -> 14460b7418f)

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

acosentino pushed a change to branch camel-3.20.x
in repository https://gitbox.apache.org/repos/asf/camel.git


    from b18a9865c43 CAMEL-19250: Classes generated by camel-restdsl-openapi-plugin are not added to jar (#9820)
     new b8fe4c8b4bf (chores) ci: bump to mvnd 1.0-m6-m40 as the older versions were removed from the Apache CDN
     new 4c1336ea4c7 (chores) ci: fix mvnd URL
     new 61490025f48 (chores) ci: fix mvnd sha256 URL
     new aeb00ed75de (chores) ci: rollback to mvnd 0.8.2 as 1.0-m6 requires additional changes
     new 14460b7418f (chores) ci: use the Apache archive for downloading Maven Daemon

The 5 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/actions/install-mvnd/action.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


[camel] 01/05: (chores) ci: bump to mvnd 1.0-m6-m40 as the older versions were removed from the Apache CDN

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

acosentino pushed a commit to branch camel-3.20.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit b8fe4c8b4bf297b4cf0c64878961be4069180af2
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Sun Apr 2 09:07:27 2023 +0200

    (chores) ci: bump to mvnd 1.0-m6-m40 as the older versions were removed from the Apache CDN
---
 .github/actions/install-mvnd/action.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/actions/install-mvnd/action.yml b/.github/actions/install-mvnd/action.yml
index 4961c6f0652..b5278728385 100644
--- a/.github/actions/install-mvnd/action.yml
+++ b/.github/actions/install-mvnd/action.yml
@@ -21,7 +21,7 @@ inputs:
   version:
     description: 'The version of the maven daemon to install'
     required: true
-    default: '0.8.2'
+    default: '1.0-m6-m40'
 outputs:
   mvnd-dir:
     description: "The directory where the command mvnd is located"


[camel] 05/05: (chores) ci: use the Apache archive for downloading Maven Daemon

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

acosentino pushed a commit to branch camel-3.20.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 14460b7418f205a7906222492843a08a49427be3
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Mon Apr 3 14:57:22 2023 +0200

    (chores) ci: use the Apache archive for downloading Maven Daemon
    
    Includes reverts to several work-around commits:
    
    - 07023f48f6d97bb9eabb3dc10c12de4331bb35eb: Revert "(chores) ci: bump to mvnd 1.0-m6-m40 as the older versions were removed from the Apache CDN"
    - b431c90b821fc67e91e27d790fddaca3555b9e28: Revert "(chores) ci: fix mvnd URL"
    - b96b4c8745b338be9c4dcc335b6fe73edb060958: Revert "(chores) ci: fix mvnd sha256 URL"
    - 16297b7657da87997bfb787b73c6bf04553180e2: Revert "(chores) ci: rollback to mvnd 0.8.2 as 1.0-m6 requires additional changes"
---
 .github/actions/install-mvnd/action.yml | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/.github/actions/install-mvnd/action.yml b/.github/actions/install-mvnd/action.yml
index d298fb70e1f..5414102c1b9 100644
--- a/.github/actions/install-mvnd/action.yml
+++ b/.github/actions/install-mvnd/action.yml
@@ -29,7 +29,12 @@ outputs:
 runs:
   using: "composite"
   steps:
-    - run: curl -fsSL -o mvnd.zip https://github.com/apache/maven-mvnd/releases/download/${{ inputs.version }}/maven-mvnd-${{ inputs.version }}-linux-amd64.zip
+    - run: curl -fsSL -o mvnd.zip https://archive.apache.org/dist/maven/mvnd/${{ inputs.version }}/maven-mvnd-${{ inputs.version }}-linux-amd64.zip
+      shell: bash
+    - run: curl -fsSL -o mvnd.zip.sha256 https://archive.apache.org/dist/maven/mvnd/${{ inputs.version }}/maven-mvnd-${{ inputs.version }}-linux-amd64.zip.sha256
+      shell: bash
+    - id: integrity-check
+      run: echo "$(cat mvnd.zip.sha256) mvnd.zip" | sha256sum --check
       shell: bash
     - run: unzip mvnd.zip -d /tmp/
       shell: bash


[camel] 02/05: (chores) ci: fix mvnd URL

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

acosentino pushed a commit to branch camel-3.20.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 4c1336ea4c7bdeee79d8367a07363c1bc4a7e9fb
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Sun Apr 2 09:14:28 2023 +0200

    (chores) ci: fix mvnd URL
---
 .github/actions/install-mvnd/action.yml | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/.github/actions/install-mvnd/action.yml b/.github/actions/install-mvnd/action.yml
index b5278728385..e670d019627 100644
--- a/.github/actions/install-mvnd/action.yml
+++ b/.github/actions/install-mvnd/action.yml
@@ -21,7 +21,11 @@ inputs:
   version:
     description: 'The version of the maven daemon to install'
     required: true
-    default: '1.0-m6-m40'
+    default: '1.0-m6'
+  milestone:
+    description: 'The version milestone of the maven daemon to install'
+    required: true
+    default: 'm40'
 outputs:
   mvnd-dir:
     description: "The directory where the command mvnd is located"
@@ -29,7 +33,7 @@ outputs:
 runs:
   using: "composite"
   steps:
-    - run: curl -fsSL -o mvnd.zip https://dlcdn.apache.org/maven/mvnd/${{ inputs.version }}/maven-mvnd-${{ inputs.version }}-linux-amd64.zip
+    - run: curl -fsSL -o mvnd.zip https://dlcdn.apache.org/maven/mvnd/${{ inputs.version }}/maven-mvnd-${{ inputs.version }}-${{ inputs.milestone }}-linux-amd64.zip
       shell: bash
     - run: curl -fsSL -o mvnd.zip.sha256 https://dlcdn.apache.org/maven/mvnd/${{ inputs.version }}/maven-mvnd-${{ inputs.version }}-linux-amd64.zip.sha256
       shell: bash


[camel] 03/05: (chores) ci: fix mvnd sha256 URL

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

acosentino pushed a commit to branch camel-3.20.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 61490025f48a5c43de9a16fd4e614e68fd3f5312
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Sun Apr 2 09:16:41 2023 +0200

    (chores) ci: fix mvnd sha256 URL
---
 .github/actions/install-mvnd/action.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/actions/install-mvnd/action.yml b/.github/actions/install-mvnd/action.yml
index e670d019627..decc569a40b 100644
--- a/.github/actions/install-mvnd/action.yml
+++ b/.github/actions/install-mvnd/action.yml
@@ -35,7 +35,7 @@ runs:
   steps:
     - run: curl -fsSL -o mvnd.zip https://dlcdn.apache.org/maven/mvnd/${{ inputs.version }}/maven-mvnd-${{ inputs.version }}-${{ inputs.milestone }}-linux-amd64.zip
       shell: bash
-    - run: curl -fsSL -o mvnd.zip.sha256 https://dlcdn.apache.org/maven/mvnd/${{ inputs.version }}/maven-mvnd-${{ inputs.version }}-linux-amd64.zip.sha256
+    - run: curl -fsSL -o mvnd.zip.sha256 https://dlcdn.apache.org/maven/mvnd/${{ inputs.version }}/maven-mvnd-${{ inputs.version }}-${{ inputs.milestone }}-linux-amd64.zip.sha256
       shell: bash
     - id: integrity-check
       run: echo "$(cat mvnd.zip.sha256) mvnd.zip" | sha256sum --check


[camel] 04/05: (chores) ci: rollback to mvnd 0.8.2 as 1.0-m6 requires additional changes

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

acosentino pushed a commit to branch camel-3.20.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit aeb00ed75de264e68f8b9dddf3682003fa9ea3a3
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Sun Apr 2 09:21:13 2023 +0200

    (chores) ci: rollback to mvnd 0.8.2 as 1.0-m6 requires additional changes
---
 .github/actions/install-mvnd/action.yml | 13 ++-----------
 1 file changed, 2 insertions(+), 11 deletions(-)

diff --git a/.github/actions/install-mvnd/action.yml b/.github/actions/install-mvnd/action.yml
index decc569a40b..d298fb70e1f 100644
--- a/.github/actions/install-mvnd/action.yml
+++ b/.github/actions/install-mvnd/action.yml
@@ -21,11 +21,7 @@ inputs:
   version:
     description: 'The version of the maven daemon to install'
     required: true
-    default: '1.0-m6'
-  milestone:
-    description: 'The version milestone of the maven daemon to install'
-    required: true
-    default: 'm40'
+    default: '0.8.2'
 outputs:
   mvnd-dir:
     description: "The directory where the command mvnd is located"
@@ -33,12 +29,7 @@ outputs:
 runs:
   using: "composite"
   steps:
-    - run: curl -fsSL -o mvnd.zip https://dlcdn.apache.org/maven/mvnd/${{ inputs.version }}/maven-mvnd-${{ inputs.version }}-${{ inputs.milestone }}-linux-amd64.zip
-      shell: bash
-    - run: curl -fsSL -o mvnd.zip.sha256 https://dlcdn.apache.org/maven/mvnd/${{ inputs.version }}/maven-mvnd-${{ inputs.version }}-${{ inputs.milestone }}-linux-amd64.zip.sha256
-      shell: bash
-    - id: integrity-check
-      run: echo "$(cat mvnd.zip.sha256) mvnd.zip" | sha256sum --check
+    - run: curl -fsSL -o mvnd.zip https://github.com/apache/maven-mvnd/releases/download/${{ inputs.version }}/maven-mvnd-${{ inputs.version }}-linux-amd64.zip
       shell: bash
     - run: unzip mvnd.zip -d /tmp/
       shell: bash