Add build for Java 25 #361
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: SmallRye Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - '.gitignore' | |
| - 'CODEOWNERS' | |
| - 'LICENSE' | |
| - 'NOTICE' | |
| - 'README*' | |
| pull_request: | |
| paths-ignore: | |
| - '.gitignore' | |
| - 'CODEOWNERS' | |
| - 'LICENSE' | |
| - 'NOTICE' | |
| - 'README*' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| java: [17, 21, 25] | |
| name: build with jdk ${{matrix.java}} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| name: checkout | |
| - uses: actions/setup-java@v5 | |
| name: set up jdk ${{matrix.java}} | |
| with: | |
| distribution: 'temurin' | |
| java-version: ${{matrix.java}} | |
| cache: 'maven' | |
| cache-dependency-path: '**/pom.xml' | |
| - name: build with maven | |
| run: mvn -B formatter:validate install --file pom.xml | |
| - uses: actions/checkout@v5 | |
| name: checkout smallrye-config | |
| with: | |
| repository: smallrye/smallrye-config | |
| path: smallrye-config | |
| - name: test with smallrye-config | |
| run: | | |
| cd smallrye-config | |
| mvn versions:update-property -Dproperty=version.smallrye.testing -DallowSnapshots=true -N | |
| git diff pom.xml | |
| mvn install | |
| quality: | |
| needs: [build] | |
| if: github.event_name == 'push' && github.repository_owner == 'smallrye' | |
| runs-on: ubuntu-latest | |
| name: quality | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| cache: 'maven' | |
| cache-dependency-path: '**/pom.xml' | |
| - name: build with docs and coverage | |
| run: | | |
| mvn verify -Pcoverage javadoc:javadoc | |
| mvn sonar:sonar -Dsonar.projectKey= -Dsonar.token=${{secrets.SONAR_TOKEN}} |