Skip to content
Merged
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
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,7 @@ jobs:
contents: write
env:
BUILD_NUMBER: ${{ needs.build.outputs.build-number }}
SQ_VERSION: LATEST_RELEASE
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
# For now, the autoscan job need to execute two mvn commands:
Expand Down Expand Up @@ -328,6 +329,10 @@ jobs:
mvn clean compile test-compile --batch-mode
- name: Select Java 21
run: mise use java@21
- name: Orchestrator Cache
uses: ./.github/actions/orchestrator-cache
with:
sq-version: ${{ env.SQ_VERSION }}
- name: Run autoscan tests
env:
SONAR_HOST_URL: ${{ fromJSON(steps.secrets.outputs.vault).SONAR_HOST_URL }}
Expand All @@ -337,7 +342,7 @@ jobs:
run: >
mvn clean package --batch-mode --errors --show-version
--activate-profiles it-autoscan
-Dsonar.runtimeVersion=LATEST_RELEASE
-Dsonar.runtimeVersion="$SQ_VERSION"
-Dmaven.test.redirectTestOutputToFile=false
-Dparallel=methods
-DuseUnlimitedThreads=true
Expand Down
Loading