From 8db8127dc48adc8045e40e8afac0c367b7bad3b9 Mon Sep 17 00:00:00 2001 From: Valentin Kovalenko Date: Wed, 4 Dec 2024 16:50:24 -0700 Subject: [PATCH] Stop using the `kotlinCheck` Gradle task from `ssdlc-report.sh` This Gradle task was removed. --- .evergreen/ssdlc-report.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.evergreen/ssdlc-report.sh b/.evergreen/ssdlc-report.sh index 88b796e6328..b97eff6d8ba 100755 --- a/.evergreen/ssdlc-report.sh +++ b/.evergreen/ssdlc-report.sh @@ -65,7 +65,7 @@ printf "\nCreating SpotBugs SARIF reports\n" set +e # This `gradlew` command is expected to exit with a non-zero exit status, # because it reports all the findings that we normally explicitly exclude as "No Fix Needed"/"False Positive". - ./gradlew -PssdlcReport.enabled=true --continue -x test -x integrationTest -x spotlessApply check scalaCheck kotlinCheck + ./gradlew -PssdlcReport.enabled=true --continue -x test -x integrationTest -x spotlessApply check scalaCheck set -e printf "\nSpotBugs created the following SARIF reports\n" IFS=$'\n'