Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ on:
- '**.png'
- 'LICENSE.txt'
- 'NOTICE.txt'
- '.git*'

jobs:
install:
Expand All @@ -27,7 +26,12 @@ jobs:
distribution: 'temurin'
cache: maven
- name: Maven Install
run: mvn clean install -Pci --batch-mode --no-transfer-progress
env:
ORCHESTRATOR_SONAR_VERSION: ${{ vars.ORCHESTRATOR_SONAR_VERSION || 'LATEST_RELEASE' }}
run: >
mvn clean install
-Dsonar.runtimeVersion=$ORCHESTRATOR_SONAR_VERSION
-Pci --batch-mode --no-transfer-progress
- name: Upload plugin jar
uses: actions/upload-artifact@v4
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/sonar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
ORCHESTRATOR_SONAR_VERSION: ${{ vars.ORCHESTRATOR_SONAR_VERSION || 'LATEST_RELEASE' }}
run: >
mvn clean install -Pci
-Dsonar.runtimeVersion=$ORCHESTRATOR_SONAR_VERSION
org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=integrated-application-development_sonar-delphi
--batch-mode --no-transfer-progress