You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2020/11/23 11:22:03 UTC

[myfaces-tobago] branch master updated: improved build

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

bommel pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git


The following commit(s) were added to refs/heads/master by this push:
     new 71f5d62  improved build
     new 28c5a47  Merge pull request #132 from bohmber/master
71f5d62 is described below

commit 71f5d62e8210c7ae4d2e52df8052e325d0942626
Author: Bernd Bohmann <bo...@apache.org>
AuthorDate: Mon Nov 23 11:19:38 2020 +0100

    improved build
---
 .github/workflows/tobago-ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/tobago-ci.yml b/.github/workflows/tobago-ci.yml
index 3f7a3a6..6e97fc8 100644
--- a/.github/workflows/tobago-ci.yml
+++ b/.github/workflows/tobago-ci.yml
@@ -44,8 +44,8 @@ jobs:
         restore-keys: ${{ runner.os }}-m2
     - name: Build with Maven
       run: |
-         if ! mvn -B checkstyle:check apache-rat:check animal-sniffer:check dependency-check:check package -Dformats=XML -f pom.xml; then
-           find . \( -path '*/target/surefire-reports/*.xml' -o -path '*/target/rat.txt' -o -path '*/target/checkstyle-result.xml' -o -path '*/target/dependency-check-report.xml' \) | zip -q reports.zip -@
+         if ! mvn -B checkstyle:check apache-rat:check animal-sniffer:check dependency-check:check -Pgenerate-assembly -Pfrontend package -Dformats=XML -f pom.xml; then
+           find . \( -path '*/target/surefire-reports/*.xml' -o -path '*/target/failsafe-reports/*.xml' -o -path '*/target/rat.txt' -o -path '*/target/checkstyle-result.xml' -o -path '*/target/dependency-check-report.xml' \) | zip -q reports.zip -@
            exit 1
          fi