@@ -56,10 +56,10 @@ jobs:
5656 fail-fast : false
5757 matrix :
5858 item :
59- - { runner: github-ubuntu-latest-m, profile: without-sonarqube-project }
60- - { runner: github-ubuntu-latest-m, profile: only-sonarqube-project }
61- - { runner: github-windows-latest-m, profile: without-sonarqube-project }
62- - { runner: github-windows-latest-m, profile: only-sonarqube-project }
59+ - { runner: github-ubuntu-latest-m, profile: without-sonarqube-project, sq_version: LATEST_RELEASE }
60+ - { runner: github-ubuntu-latest-m, profile: only-sonarqube-project, sq_version: LATEST_RELEASE }
61+ - { runner: github-windows-latest-m, profile: without-sonarqube-project, sq_version: LATEST_RELEASE }
62+ - { runner: github-windows-latest-m, profile: only-sonarqube-project, sq_version: LATEST_RELEASE }
6363 name : Ruling QA
6464 needs :
6565 - build
@@ -91,14 +91,18 @@ jobs:
9191 with :
9292 secrets : |
9393 development/github/token/licenses-ro token | GITHUB_TOKEN;
94+ - name : Orchestrator Cache
95+ uses : ./.github/actions/orchestrator-cache
96+ with :
97+ sq-version : ${{ matrix.item.sq_version }}
9498 - name : Run ruling tests
9599 shell : bash # Set explicitly so Bash is used on Windows runners too.
96100 env :
97101 MAVEN_OPTS : " -Xmx3g"
98102 GITHUB_TOKEN : ${{ fromJSON(steps.secrets.outputs.vault).GITHUB_TOKEN }}
99103 run : |
100104 cd its/ruling
101- mvn package ${MAVEN_OUTPUT_ARGS} "-Pit-ruling,${{ matrix.item.profile }}" -Dsonar.runtimeVersion=LATEST_RELEASE -Dmaven.test.redirectTestOutputToFile=false -Dparallel=methods -DuseUnlimitedThreads=true
105+ mvn package ${MAVEN_OUTPUT_ARGS} "-Pit-ruling,${{ matrix.item.profile }}" -Dsonar.runtimeVersion=${{ matrix.item.sq_version }} -Dmaven.test.redirectTestOutputToFile=false -Dparallel=methods -DuseUnlimitedThreads=true
102106 - name : Upload Actual Results On Failure
103107 if : failure()
104108 uses : ./.github/actions/upload-actual
@@ -148,6 +152,10 @@ jobs:
148152 with :
149153 secrets : |
150154 development/github/token/licenses-ro token | GITHUB_TOKEN;
155+ - name : Orchestrator Cache
156+ uses : ./.github/actions/orchestrator-cache
157+ with :
158+ sq-version : ${{ matrix.item.sq_version }}
151159 - name : Plugin QA
152160 env :
153161 GITHUB_TOKEN : ${{ fromJSON(steps.secrets.outputs.vault).GITHUB_TOKEN }}
0 commit comments