Build #3047
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: Build | |
on: | |
schedule: | |
- cron: "15 0 * * *" | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
env: | |
MAVEN_ARGS: "--no-transfer-progress --errors --fail-at-end --show-version" | |
jobs: | |
build: | |
name: Build | |
strategy: | |
matrix: | |
java: [ '11', '17', '21', '22', '23' ] | |
os: [ 'ubuntu-24.04', 'macos-14', 'windows-2022' ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
cache: 'maven' | |
- name: Build | |
run: ./mvnw verify | |
sonarqube: | |
name: SonarQube Cloud | |
runs-on: ubuntu-24.04 | |
if: ${{ github.repository == 'focus-shift/jollyday' && (github.event_name != 'pull_request' || (github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]')) }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 11 and 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: | | |
11 | |
17 | |
cache: 'maven' | |
- name: Run tests with JaxB | |
run: > | |
./mvnw -Pcoverage verify | |
-Dde.focus_shift.jollyday.config.urls=file:./src/test/resources/jollyday-jaxb.properties | |
- name: Run tests with Jackson | |
run: > | |
./mvnw -Pcoverage verify | |
-Dde.focus_shift.jollyday.config.urls=file:./src/test/resources/jollyday-jackson.properties | |
- name: SonarQube Cloud Analysis | |
run: > | |
./mvnw -Pcoverage | |
sonar:sonar | |
-Dsonar.coverage.exclusions=**/jackson/mapping/*,**/jaxb/mapping/* | |
-Dsonar.host.url=https://sonarcloud.io | |
-Dsonar.organization=focus-shift | |
-Dsonar.projectKey=focus-shift_jollyday | |
-Dsonar.java.jdkHome=${{ env.JAVA_HOME_11_X64 }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |