This is an automated email from the ASF dual-hosted git repository. alien11689 pushed a commit to branch ARIES-2165-build-application-with-java-11-17-21 in repository https://gitbox.apache.org/repos/asf/aries.git
commit 80ba4c1dc74e9d7ce4619ec69e6a193710846932 Author: Dominik Przybysz <[email protected]> AuthorDate: Wed Apr 23 19:52:14 2025 +0200 ARIES-2165: Build application with Java 11, 17 and 21 --- .github/workflows/application.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/application.yml b/.github/workflows/application.yml index 11cad7019..e8e6604a6 100644 --- a/.github/workflows/application.yml +++ b/.github/workflows/application.yml @@ -38,14 +38,26 @@ jobs: steps: - name: Git Checkout uses: actions/checkout@v4 - - name: Set up Java + - name: Set up Java 8 uses: actions/setup-java@v4 with: distribution: 'temurin' - java-version: ${{ matrix.java }} + java-version: 8 - name: Build parent shell: bash run: mvn -U -e -B -ntp clean install -f parent + - name: Build versioning + shell: bash + run: mvn -V -U -e -B -ntp -Dmaven.test.skip=true clean install -f versioning + - name: Build util + shell: bash + run: mvn -V -U -e -B -ntp -Dmaven.test.skip=true clean install -f util + - name: Set up Java ${{ matrix.java }} + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: ${{ matrix.java }} + if: ${{ 8 != matrix.java }} - name: Build application shell: bash run: mvn -U -e -B -ntp clean install -f application
