Generate equals and hashcode for @ConfigMapping implementations (#1181) #2470
This file contains 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: [11, 17, 21] | |
name: build with jdk ${{matrix.java}} | |
steps: | |
- uses: actions/checkout@v4 | |
name: checkout | |
- uses: actions/setup-java@v4 | |
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 verify --file pom.xml | |
- uses: actions/upload-artifact@v4 | |
name: tck-report | |
with: | |
name: tck-report-java-${{matrix.java}} | |
path: testsuite/tck/target/surefire-reports | |
build-windows: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
java: [11, 17, 21] | |
name: build with jdk ${{matrix.java}} windows | |
steps: | |
- uses: actions/checkout@v4 | |
name: checkout | |
- uses: actions/setup-java@v4 | |
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 verify --file pom.xml | |
docs: | |
needs: [build] | |
if: github.event_name == 'push' && github.repository_owner == 'smallrye' | |
runs-on: ubuntu-latest | |
name: docs | |
steps: | |
- uses: actions/checkout@v4 | |
name: checkout | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 11 | |
cache: 'maven' | |
cache-dependency-path: '**/pom.xml' | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
- name: build docs | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
run: | | |
cd documentation | |
mvn package | |
pipx install pipenv | |
pipenv install | |
git fetch origin gh-pages --depth=1 | |
git config --global user.name "SmallRye CI" | |
git config --global user.email "[email protected]" | |
pipenv run mike deploy --config-file=mkdocs.yaml --push --update-aliases Main SNAPSHOT | |
quality: | |
needs: [build] | |
if: github.event_name == 'push' && github.repository_owner == 'smallrye' | |
runs-on: ubuntu-latest | |
name: quality | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 11 | |
cache: 'maven' | |
cache-dependency-path: '**/pom.xml' | |
- name: build with docs and coverage | |
run: mvn verify -Pcoverage javadoc:javadoc | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: sonar | |
run: mvn sonar:sonar -Psonar -Dsonar.token=${{secrets.SONAR_TOKEN}} |