Skip to content

Commit e841815

Browse files
committed
Enable the verifier on the presubmits
This is follow up on #8034
1 parent 3768608 commit e841815

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ intellijPlatform {
164164
VerifyPluginTask.FailureLevel.INVALID_PLUGIN,
165165
// VerifyPluginTask.FailureLevel.NOT_DYNAMIC,
166166
)
167-
verificationReportsFormats = VerifyPluginTask.VerificationReportsFormats.ALL
167+
//verificationReportsFormats = VerifyPluginTask.VerificationReportsFormats.ALL
168168
subsystemsToCheck = VerifyPluginTask.Subsystems.ALL
169169
// Mute and freeArgs documentation
170170
// https://github.com/JetBrains/intellij-plugin-verifier/?tab=readme-ov-file#specific-options

flutter-idea/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ intellijPlatform {
143143
VerifyPluginTask.FailureLevel.INVALID_PLUGIN,
144144
// VerifyPluginTask.FailureLevel.NOT_DYNAMIC,
145145
)
146-
verificationReportsFormats = VerifyPluginTask.VerificationReportsFormats.ALL
146+
//verificationReportsFormats = VerifyPluginTask.VerificationReportsFormats.ALL
147147
subsystemsToCheck = VerifyPluginTask.Subsystems.ALL
148148
// Mute and freeArgs documentation
149149
// https://github.com/JetBrains/intellij-plugin-verifier/?tab=readme-ov-file#specific-options

tool/github.sh

+2
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ elif [ "UNIT_TEST_BOT" = "$BOT" ] ; then
8686
./bin/plugin test --no-setup
8787

8888
else
89+
# Run the vefifier for this version
90+
./bin/plugin verify --only-version=$IDEA_VERSION
8991

9092
# Run the build.
9193
./bin/plugin make --channel=stable --only-version=$IDEA_VERSION --no-setup

0 commit comments

Comments
 (0)