From fcb22d98c768d7521bd7af05fcd17635281a7622 Mon Sep 17 00:00:00 2001 From: "James R. Perkins" Date: Mon, 8 Jul 2024 13:47:41 -0700 Subject: [PATCH] [580] Print out the Maven version in hopes this is locally reproducible. --- .github/workflows/integration-tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 6f031e301..edd4cc4e2 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -39,6 +39,7 @@ jobs: cache: 'maven' - name: Build with Maven Java ${{ matrix.java }} - ${{ matrix.os }} run: | + mvn -v mvn clean install -U -B -fae '-Pwildfly' '-T1' '-Pintegration-tests' - uses: actions/upload-artifact@v4 if: failure() @@ -71,6 +72,7 @@ jobs: cache: 'maven' - name: Build with Maven Java ${{ matrix.java }} - ${{ matrix.os }} run: | + mvn -v mvn clean install -U -B -fae '-Ppayara' '-T1' '-Pintegration-tests' - uses: actions/upload-artifact@v4 if: failure()