Add ignore rules for Mockito, Spring, and Spring-Boot #107
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: JobRunr Pro Extension | |
on: | |
push: | |
branches: | |
- main | |
- axon-jobrunrpro-*.*.x | |
jobs: | |
build: | |
name: Test and Build on JDK ${{ matrix.java-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- java-version: 8 | |
sonar-enabled: false | |
deploy-enabled: true | |
- java-version: 11 | |
sonar-enabled: false | |
deploy-enabled: false | |
- java-version: 17 | |
sonar-enabled: true | |
deploy-enabled: false | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up JDK ${{ matrix.java-version }} | |
uses: actions/[email protected] | |
with: | |
distribution: 'zulu' | |
java-version: ${{ matrix.java-version }} | |
cache: 'maven' | |
- name: Set Maven server credentials | |
uses: s4u/[email protected] | |
with: | |
servers: | | |
[{ | |
"id": "sonatype", | |
"username": "${{ secrets.SONATYPE_TOKEN_ID }}", | |
"password": "${{ secrets.SONATYPE_TOKEN_PASS }}" | |
},{ | |
"id": "JobRunrPro", | |
"username": "axoniq", | |
"password": "${{ secrets.JOB_RUNR_PRO_PASSWORD }}" | |
}] | |
- name: Regular Build | |
if: ${{ !matrix.sonar-enabled }} | |
run: | | |
./mvnw -B -U -Dstyle.color=always clean verify | |
env: | |
JOBRUNR_PRO_LICENSE: ${{ secrets.JOB_RUNR_PRO_LICENSE }} | |
- name: Build with Coverage reports | |
if: matrix.sonar-enabled | |
run: | | |
./mvnw -B -U -Dstyle.color=always -Dcoverage clean verify | |
env: | |
JOBRUNR_PRO_LICENSE: ${{ secrets.JOB_RUNR_PRO_LICENSE }} | |
- name: Sonar Analysis | |
if: matrix.sonar-enabled | |
run: | | |
./mvnw -B -Dstyle.color=always sonar:sonar \ | |
-Dsonar.projectKey=AxonFramework_extension-jobrunrpro \ | |
-Dsonar.organization=axonframework \ | |
-Dsonar.host.url=https://sonarcloud.io \ | |
-Dsonar.login=${{ secrets.SONAR_TOKEN }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Deploy to Sonatype | |
if: success() && matrix.deploy-enabled | |
run: | | |
./mvnw -B -U -Dstyle.color=always deploy -DskipTests=true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Notify success to Slack | |
if: success() | |
env: | |
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} | |
uses: voxmedia/github-action-slack-notify-build@v2 | |
with: | |
channel_id: CAGSEC92A | |
status: SUCCESS | |
color: good | |
- name: Notify failure to Slack | |
if: failure() | |
env: | |
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} | |
uses: voxmedia/github-action-slack-notify-build@v2 | |
with: | |
channel_id: CAGSEC92A | |
status: FAILED | |
color: danger |