Skip to content

Commit

Permalink
SONARPHP-1523 Fix QA script arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
GabinL21 committed Nov 6, 2024
1 parent 9d6f110 commit 607a1aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .cirrus/modules/qa.star
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def qa_ruling_script():
"git submodule update --init --depth 1",
"source cirrus-env QA",
"source .cirrus/use-gradle-wrapper.sh",
"./gradlew \"${GRADLE_TASK}\" \"--tests PhpGeneralRulingTest.test${PHP_PROJECT} -Dsonar.runtimeVersion=${SQ_VERSION}\" --info --build-cache --console plain --no-daemon"
"./gradlew \"${GRADLE_TASK}\" \"-Dsonar.runtimeVersion=${SQ_VERSION}\" --tests \"PhpGeneralRulingTest.test${PHP_PROJECT}\" --info --build-cache --console plain --no-daemon"
]


Expand Down Expand Up @@ -164,7 +164,7 @@ def qa_pr_analysis_script():
"git submodule update --init --depth 1",
"source cirrus-env QA",
"source .cirrus/use-gradle-wrapper.sh",
"./gradlew \"${GRADLE_TASK}\" \"--tests PhpPrAnalysisTest -Dsonar.runtimeVersion=${SQ_VERSION}\" --info --build-cache --console plain --no-daemon"
"./gradlew \"${GRADLE_TASK}\" \"-Dsonar.runtimeVersion=${SQ_VERSION}\" --tests \"PhpPrAnalysisTest\" --info --build-cache --console plain --no-daemon"
]


Expand Down

0 comments on commit 607a1aa

Please sign in to comment.