This is an automated email from the ASF dual-hosted git repository.
apkhmv pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new 5ac93f39ada IGNITE-28384 Run spotbugs and pmd on TC (#7890)
5ac93f39ada is described below
commit 5ac93f39ada6a0a17f703c58018a88792ed35345
Author: Vadim Pakhnushev <[email protected]>
AuthorDate: Thu Apr 2 20:04:44 2026 +0300
IGNITE-28384 Run spotbugs and pmd on TC (#7890)
---
.teamcity/test/sanity_check/build_types/PMD.kt | 2 +-
.teamcity/test/sanity_check/build_types/Spotbugs.kt | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/.teamcity/test/sanity_check/build_types/PMD.kt
b/.teamcity/test/sanity_check/build_types/PMD.kt
index ae6817020f7..8d79f864ba8 100644
--- a/.teamcity/test/sanity_check/build_types/PMD.kt
+++ b/.teamcity/test/sanity_check/build_types/PMD.kt
@@ -15,7 +15,7 @@ object PMD : BuildType({
steps {
customGradle {
name = "PMD check"
- tasks = "pmdMain pmdTest"
+ tasks = "pmd"
workingDir = "%VCSROOT__IGNITE3%"
}
}
diff --git a/.teamcity/test/sanity_check/build_types/Spotbugs.kt
b/.teamcity/test/sanity_check/build_types/Spotbugs.kt
index ca5bcd03b8f..4e07777a4b3 100644
--- a/.teamcity/test/sanity_check/build_types/Spotbugs.kt
+++ b/.teamcity/test/sanity_check/build_types/Spotbugs.kt
@@ -12,8 +12,8 @@ object Spotbugs: BuildType({
steps {
customGradle {
name = "Static analysis of source code via Spotbugs"
- tasks = "spotbugsMain"
+ tasks = "spotbugs"
workingDir = "%VCSROOT__IGNITE3%"
}
}
-})
\ No newline at end of file
+})