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

robbie pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git


The following commit(s) were added to refs/heads/main by this push:
     new 6bfc849997 NO-JIRA: ensure a check build is done with -Prelease on 
JDK11
6bfc849997 is described below

commit 6bfc849997e893ccb154091daf95fa743b02a833
Author: Robbie Gemmell <[email protected]>
AuthorDate: Fri Oct 4 15:44:32 2024 +0100

    NO-JIRA: ensure a check build is done with -Prelease on JDK11
    
    catch compile issues in extra openwire tests during activemq 5.x updates
---
 .github/workflows/build.yml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 844c0f3ebd..0631cd0601 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -108,7 +108,14 @@ jobs:
           ref: ${{ env.EXAMPLES_BRANCH }}
           path: activemq-artemis-examples
 
-      - name: Build Main
+      - name: Build Main (JDK11 / -Prelease)
+        if: matrix.java == '11'
+        run: |
+          cd activemq-artemis
+          mvn -s .github/maven-settings.xml -DskipTests -Derrorprone -Pdev 
-Prelease -Dgpg.skip install
+
+      - name: Build Main (JDK >11)
+        if: matrix.java != '11'
         run: |
           cd activemq-artemis
           mvn -s .github/maven-settings.xml -DskipTests -Derrorprone -Pdev 
-Pjmh install


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information, visit: https://activemq.apache.org/contact


Reply via email to