Skip to content

Commit

Permalink
[#411] Add jaxb-tools-3.x branch to GH CI build actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrpav committed Oct 3, 2023
1 parent 13f00ee commit 35104b4
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/maven-build-action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Maven CI

on:
push:
branches: [ master, jaxb-tools-2.x, 0.15.x ]
branches: [ master, jaxb-tools-3.x, jaxb-tools-2.x, 0.15.x ]
pull_request:
branches: [ master, jaxb-tools-2.x, 0.15.x ]
branches: [ master, jaxb-tools-3.x, jaxb-tools-2.x, 0.15.x ]

jobs:
build_and_test:
Expand Down Expand Up @@ -45,3 +45,16 @@ jobs:

- name: Maven with JDK 17 - Release dry run
run: mvn -Prelease-dry-run,sonatype-oss-release,release -DperformRelease -DdryRun=true -Darguments="-Dgpg.skip=true" -B release:clean release:prepare clean install

- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: 21-ea
distribution: 'temurin'

- name: Maven with JDK 21
run: mvn -Pall -no-transfer-progress clean install

- name: Maven with JDK 21 - Release dry run
run: mvn -Prelease-dry-run,sonatype-oss-release,release -DperformRelease -DdryRun=true -Darguments="-Dgpg.skip=true" -B release:clean release:prepare clean install

0 comments on commit 35104b4

Please sign in to comment.