You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2023/06/26 14:06:21 UTC

[camel] branch main updated: (chores) ci: fixed build command on GH actions

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

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 61bb22cc1dd (chores) ci: fixed build command on GH actions
61bb22cc1dd is described below

commit 61bb22cc1dde8459fb336babba909941d0340ab7
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Mon Jun 26 16:06:10 2023 +0200

    (chores) ci: fixed build command on GH actions
---
 .github/workflows/pr-build-main.yml   | 2 +-
 .github/workflows/push-build-main.yml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/pr-build-main.yml b/.github/workflows/pr-build-main.yml
index 53bd23546d2..045b6584bc2 100644
--- a/.github/workflows/pr-build-main.yml
+++ b/.github/workflows/pr-build-main.yml
@@ -53,7 +53,7 @@ jobs:
           java-version: ${{ matrix.java }}
           cache: 'maven'
       - name: maven build
-        run: ./mvnw -l build.log $MVND_OPTS -DskipTests install
+        run: ./mvnw -l build.log -Dquickly install
       - name: archive logs
         uses: actions/upload-artifact@v3
         if: always()
diff --git a/.github/workflows/push-build-main.yml b/.github/workflows/push-build-main.yml
index 4c828a759dc..be4505f0900 100644
--- a/.github/workflows/push-build-main.yml
+++ b/.github/workflows/push-build-main.yml
@@ -54,7 +54,7 @@ jobs:
           java-version: ${{ matrix.java }}
           cache: 'maven'
       - name: mvn formatter and build
-        run: ${{ steps.install-mvnd.outputs.mvnd-dir }}/mvnd -l build.log $MVND_OPTS -DskipTests package
+        run: ${{ steps.install-mvnd.outputs.mvnd-dir }}/mvnd -l build.log -Dquickly package
       - name: archive logs
         uses: actions/upload-artifact@v3
         if: always()