This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 5f7f579e185645351aa697bd20fd40042ca42981 Author: James Netherton <[email protected]> AuthorDate: Tue Aug 16 15:09:09 2022 +0100 Remove docs module verification step from CI build as it is now a manual step --- .github/workflows/camel-master-cron.yaml | 2 +- .github/workflows/ci-build.yaml | 13 +++---------- .github/workflows/quarkus-master-cron.yaml | 2 +- 3 files changed, 5 insertions(+), 12 deletions(-) diff --git a/.github/workflows/camel-master-cron.yaml b/.github/workflows/camel-master-cron.yaml index a335f2b6f3..eeb26b8871 100644 --- a/.github/workflows/camel-master-cron.yaml +++ b/.github/workflows/camel-master-cron.yaml @@ -72,7 +72,7 @@ jobs: git rev-parse origin/main > ~/build-data/main-sha.txt - name: Build Camel Quarkus run: | - ./mvnw ${MAVEN_ARGS} clean install -Papache-snapshots -pl '!docs' --fail-at-end + ./mvnw ${MAVEN_ARGS} clean install -Papache-snapshots --fail-at-end - name: Tar Maven Repo shell: bash run: tar -czf maven-repo.tgz -C ~ build-data .m2/repository diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index 52c5ec43d5..f09e35e7f3 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -70,7 +70,7 @@ jobs: - name: Setup apache-snapshots profile if: github.ref == 'refs/heads/camel-main' || github.base_ref == 'camel-main' run: | - echo "BRANCH_OPTIONS=-Papache-snapshots -pl '!docs'" >> $GITHUB_ENV + echo "BRANCH_OPTIONS=-Papache-snapshots" >> $GITHUB_ENV - name: Setup oss-snapshots profile if: github.ref == 'refs/heads/quarkus-main' || github.base_ref == 'quarkus-main' run: | @@ -91,7 +91,7 @@ jobs: uses: actions/checkout@v2 - name: mvn clean install -DskipTests run: | - eval ./mvnw ${MAVEN_ARGS} ${BRANCH_OPTIONS} clean install -DskipTests -Dquarkus.build.skip -Dskip.installyarn -Dskip.yarn + eval ./mvnw ${MAVEN_ARGS} ${BRANCH_OPTIONS} clean install -DskipTests -Dquarkus.build.skip - name: Sync Maven properties run: | ./mvnw cq:sync-versions ${MAVEN_ARGS} -N @@ -193,7 +193,7 @@ jobs: run: | [[ -z $(git status --porcelain) ]] || { echo 'There are uncommitted changes'; git status; exit 1; } - functional-extension-tests-and-docs: + functional-extension-tests: runs-on: ubuntu-latest needs: initial-mvn-install if: github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'JVM') @@ -243,13 +243,6 @@ jobs: ../mvnw ${MAVEN_ARGS} ${BRANCH_OPTIONS} \ -Dformatter.skip -Dimpsort.skip -Denforcer.skip -Dcamel-quarkus.update-extension-doc-page.skip \ test - - name: cd docs && mvn verify - if: github.ref != 'refs/heads/camel-main' && github.base_ref != 'camel-main' - run: | - cd docs - ../mvnw ${MAVEN_ARGS} ${BRANCH_OPTIONS} \ - -Dformatter.skip -Dimpsort.skip -Denforcer.skip \ - verify extensions-jvm-tests: runs-on: ubuntu-latest diff --git a/.github/workflows/quarkus-master-cron.yaml b/.github/workflows/quarkus-master-cron.yaml index 8030729f19..3773fb06ae 100644 --- a/.github/workflows/quarkus-master-cron.yaml +++ b/.github/workflows/quarkus-master-cron.yaml @@ -78,7 +78,7 @@ jobs: && ./mvnw ${MAVEN_ARGS} clean install -Dquickly - name: Build Camel Quarkus run: | - ./mvnw ${MAVEN_ARGS} clean install -Dquarkus.version=999-SNAPSHOT -pl '!docs' --fail-at-end + ./mvnw ${MAVEN_ARGS} clean install -Dquarkus.version=999-SNAPSHOT --fail-at-end - name: Tar Maven Repo shell: bash run: |
