This is an automated email from the ASF dual-hosted git repository. alien11689 pushed a commit to branch skip-tests-for-dependency-modules-in-workflows in repository https://gitbox.apache.org/repos/asf/aries.git
commit 51e00aac85161cdc35dc0c145700021b24015838 Author: Dominik Przybysz <[email protected]> AuthorDate: Sat Mar 1 07:48:41 2025 +0100 [MAINTENANCE] Skip tests for dependency modules in workflows --- .github/workflows/blueprint.yml | 10 +++++----- .github/workflows/jmx.yml | 2 +- .github/workflows/jndi.yml | 4 ++-- .github/workflows/proxy.yml | 2 +- .github/workflows/quiesce.yml | 6 +++--- .github/workflows/subsystem.yml | 2 +- .github/workflows/transaction.yml | 2 +- .github/workflows/util.yml | 2 +- .github/workflows/web.yml | 6 +++--- 9 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/blueprint.yml b/.github/workflows/blueprint.yml index 99b3cba18..33d4e0851 100644 --- a/.github/workflows/blueprint.yml +++ b/.github/workflows/blueprint.yml @@ -54,19 +54,19 @@ jobs: run: mvn -U -e -B -ntp clean install -f parent - name: Build testsupport shell: bash - run: mvn -U -e -B -ntp clean install -f testsupport + run: mvn -U -e -B -ntp -Dmaven.test.skip=true clean install -f testsupport - name: Build proxy shell: bash - run: mvn -U -e -B -ntp clean install -f proxy + run: mvn -U -e -B -ntp -Dmaven.test.skip=true clean install -f proxy - name: Build versioning shell: bash - run: mvn -U -e -B -ntp clean install -f versioning + run: mvn -U -e -B -ntp -Dmaven.test.skip=true clean install -f versioning - name: Build util shell: bash - run: mvn -U -e -B -ntp clean install -f util + run: mvn -U -e -B -ntp -Dmaven.test.skip=true clean install -f util - name: Build quiesce shell: bash - run: mvn -U -e -B -ntp clean install -f quiesce + run: mvn -U -e -B -ntp -Dmaven.test.skip=true clean install -f quiesce - name: Build blueprint shell: bash run: mvn -U -e -B -ntp clean install -f blueprint diff --git a/.github/workflows/jmx.yml b/.github/workflows/jmx.yml index 7b72ffb97..1f1061014 100644 --- a/.github/workflows/jmx.yml +++ b/.github/workflows/jmx.yml @@ -49,7 +49,7 @@ jobs: run: mvn -U -e -B -ntp clean install -f parent - name: Build testsupport shell: bash - run: mvn -U -e -B -ntp clean install -f testsupport + run: mvn -U -e -B -ntp -Dmaven.test.skip=true clean install -f testsupport - name: Build jmx shell: bash run: mvn -U -e -B -ntp clean install -f jmx diff --git a/.github/workflows/jndi.yml b/.github/workflows/jndi.yml index d79a11137..d83fb3e76 100644 --- a/.github/workflows/jndi.yml +++ b/.github/workflows/jndi.yml @@ -49,10 +49,10 @@ jobs: run: mvn -U -e -B -ntp clean install -f parent - name: Build testsupport shell: bash - run: mvn -U -e -B -ntp clean install -f testsupport + run: mvn -U -e -B -ntp -Dmaven.test.skip=true clean install -f testsupport - name: Build util shell: bash - run: mvn -U -e -B -ntp clean install -f util + run: mvn -U -e -B -ntp -Dmaven.test.skip=true clean install -f util - name: Build jndi shell: bash run: mvn -U -e -B -ntp clean install -f jndi diff --git a/.github/workflows/proxy.yml b/.github/workflows/proxy.yml index 545316cb9..542fb5b30 100644 --- a/.github/workflows/proxy.yml +++ b/.github/workflows/proxy.yml @@ -49,7 +49,7 @@ jobs: run: mvn -U -e -B -ntp clean install -f parent - name: Build testsupport shell: bash - run: mvn -U -e -B -ntp clean install -f testsupport + run: mvn -U -e -B -ntp -Dmaven.test.skip=true clean install -f testsupport - name: Build proxy shell: bash run: mvn -U -e -B -ntp clean install -f proxy diff --git a/.github/workflows/quiesce.yml b/.github/workflows/quiesce.yml index 94d13c3ec..20b21923f 100644 --- a/.github/workflows/quiesce.yml +++ b/.github/workflows/quiesce.yml @@ -51,13 +51,13 @@ jobs: run: mvn -U -e -B -ntp clean install -f parent - name: Build testsupport shell: bash - run: mvn -U -e -B -ntp clean install -f testsupport + run: mvn -U -e -B -ntp -Dmaven.test.skip=true clean install -f testsupport - name: Build versioning shell: bash - run: mvn -U -e -B -ntp clean install -f versioning + run: mvn -U -e -B -ntp -Dmaven.test.skip=true clean install -f versioning - name: Build util shell: bash - run: mvn -U -e -B -ntp clean install -f util + run: mvn -U -e -B -ntp -Dmaven.test.skip=true clean install -f util - name: Build quiesce shell: bash run: mvn -U -e -B -ntp clean install -f quiesce diff --git a/.github/workflows/subsystem.yml b/.github/workflows/subsystem.yml index d987072a0..6cfba845e 100644 --- a/.github/workflows/subsystem.yml +++ b/.github/workflows/subsystem.yml @@ -49,7 +49,7 @@ jobs: run: mvn -U -e -B -ntp clean install -f parent - name: Build testsupport shell: bash - run: mvn -U -e -B -ntp clean install -f testsupport + run: mvn -U -e -B -ntp -Dmaven.test.skip=true clean install -f testsupport - name: Build subsystem shell: bash run: mvn -U -e -B -ntp clean install -f subsystem diff --git a/.github/workflows/transaction.yml b/.github/workflows/transaction.yml index b113416cc..a572cd54c 100644 --- a/.github/workflows/transaction.yml +++ b/.github/workflows/transaction.yml @@ -49,7 +49,7 @@ jobs: run: mvn -U -e -B -ntp clean install -f parent - name: Build testsupport shell: bash - run: mvn -U -e -B -ntp clean install -f testsupport + run: mvn -U -e -B -ntp -Dmaven.test.skip=true clean install -f testsupport - name: Build transaction shell: bash run: mvn -U -e -B -ntp clean install -f transaction diff --git a/.github/workflows/util.yml b/.github/workflows/util.yml index 970da623d..dbdc596b7 100644 --- a/.github/workflows/util.yml +++ b/.github/workflows/util.yml @@ -49,7 +49,7 @@ jobs: run: mvn -U -e -B -ntp clean install -f parent - name: Build versioning shell: bash - run: mvn -U -e -B -ntp clean install -f versioning + run: mvn -U -e -B -ntp -Dmaven.test.skip=true clean install -f versioning - name: Build util shell: bash run: mvn -U -e -B -ntp clean install -f util diff --git a/.github/workflows/web.yml b/.github/workflows/web.yml index 22ea58af4..b44f4ed45 100644 --- a/.github/workflows/web.yml +++ b/.github/workflows/web.yml @@ -51,13 +51,13 @@ jobs: run: mvn -U -e -B -ntp clean install -f parent - name: Build testsupport shell: bash - run: mvn -U -e -B -ntp clean install -f testsupport + run: mvn -U -e -B -ntp -Dmaven.test.skip=true clean install -f testsupport - name: Build versioning shell: bash - run: mvn -U -e -B -ntp clean install -f versioning + run: mvn -U -e -B -ntp -Dmaven.test.skip=true clean install -f versioning - name: Build util shell: bash - run: mvn -U -e -B -ntp clean install -f util + run: mvn -U -e -B -ntp -Dmaven.test.skip=true clean install -f util - name: Build web shell: bash run: mvn -U -e -B -ntp clean install -f web
