This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch quarkus-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 1738c87d7e4dcf356dad5d0960e5ffbe802f6aca Author: James Netherton <[email protected]> AuthorDate: Fri Jun 24 15:27:32 2022 +0100 Try to exclude problematic devtools/gradle module --- .github/workflows/ci-build.yaml | 2 +- .github/workflows/quarkus-master-cron.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index 4d46d14d74..104991eeec 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -84,7 +84,7 @@ jobs: git clone --depth 1 --branch main https://github.com/quarkusio/quarkus.git \ && cd quarkus \ && echo "Current Quarkus commit:" $(git rev-parse HEAD) \ - && ./mvnw ${MAVEN_ARGS} clean install -Dquickly + && ./mvnw ${MAVEN_ARGS} clean install -Dquickly -Dimpsort.skip -Dformatter.skip -T1C -pl "\!devtools/gradle" - name: Checkout uses: actions/checkout@v2 - name: mvn clean install -DskipTests diff --git a/.github/workflows/quarkus-master-cron.yaml b/.github/workflows/quarkus-master-cron.yaml index 8030729f19..3366f65178 100644 --- a/.github/workflows/quarkus-master-cron.yaml +++ b/.github/workflows/quarkus-master-cron.yaml @@ -75,7 +75,7 @@ jobs: git clone --depth 1 --branch main https://github.com/quarkusio/quarkus.git \ && cd quarkus \ && echo "Current Quarkus commit:" $(git rev-parse HEAD) \ - && ./mvnw ${MAVEN_ARGS} clean install -Dquickly + && ./mvnw ${MAVEN_ARGS} clean install -Dquickly -Dimpsort.skip -Dformatter.skip -T1C -pl "\!devtools/gradle" - name: Build Camel Quarkus run: | ./mvnw ${MAVEN_ARGS} clean install -Dquarkus.version=999-SNAPSHOT -pl '!docs' --fail-at-end
