You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pp...@apache.org on 2020/09/05 14:23:55 UTC

[camel-quarkus] 01/02: Speedup the initial CI mvn install by adding -T1C

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

ppalaga pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit e60c735e6884866c47e13170fba7ac5efda00b96
Author: Peter Palaga <pp...@redhat.com>
AuthorDate: Sat Sep 5 12:11:43 2020 +0200

    Speedup the initial CI mvn install by adding -T1C
---
 .github/workflows/ci-build.yaml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml
index cc34476..681943e 100644
--- a/.github/workflows/ci-build.yaml
+++ b/.github/workflows/ci-build.yaml
@@ -84,7 +84,8 @@ jobs:
         uses: actions/checkout@v2
       - name: mvn clean install -DskipTests
         run: |
-          ./mvnw -V -ntp ${BRANCH_OPTIONS} clean install -DskipTests -Dquarkus.build.skip
+          ./mvnw -V -ntp ${BRANCH_OPTIONS} clean install -DskipTests -Dquarkus.build.skip \
+            -T1C -Dorg.slf4j.simpleLogger.showThreadName=true
       - name: Fail if there are uncommitted changes
         shell: bash
         run: |