From e84181510b819f3b85a86275cf091824e0c7677c Mon Sep 17 00:00:00 2001 From: Jaime Wren Date: Thu, 17 Apr 2025 15:17:47 -0700 Subject: [PATCH] Enable the verifier on the presubmits This is follow up on https://github.com/flutter/flutter-intellij/issues/8034 --- build.gradle.kts | 2 +- flutter-idea/build.gradle.kts | 2 +- tool/github.sh | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 7f933a6e2..bae8d81be 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -164,7 +164,7 @@ intellijPlatform { VerifyPluginTask.FailureLevel.INVALID_PLUGIN, // VerifyPluginTask.FailureLevel.NOT_DYNAMIC, ) - verificationReportsFormats = VerifyPluginTask.VerificationReportsFormats.ALL + //verificationReportsFormats = VerifyPluginTask.VerificationReportsFormats.ALL subsystemsToCheck = VerifyPluginTask.Subsystems.ALL // Mute and freeArgs documentation // https://github.com/JetBrains/intellij-plugin-verifier/?tab=readme-ov-file#specific-options diff --git a/flutter-idea/build.gradle.kts b/flutter-idea/build.gradle.kts index ac71501ed..498a817a7 100644 --- a/flutter-idea/build.gradle.kts +++ b/flutter-idea/build.gradle.kts @@ -143,7 +143,7 @@ intellijPlatform { VerifyPluginTask.FailureLevel.INVALID_PLUGIN, // VerifyPluginTask.FailureLevel.NOT_DYNAMIC, ) - verificationReportsFormats = VerifyPluginTask.VerificationReportsFormats.ALL + //verificationReportsFormats = VerifyPluginTask.VerificationReportsFormats.ALL subsystemsToCheck = VerifyPluginTask.Subsystems.ALL // Mute and freeArgs documentation // https://github.com/JetBrains/intellij-plugin-verifier/?tab=readme-ov-file#specific-options diff --git a/tool/github.sh b/tool/github.sh index 814db0d6f..a58439699 100755 --- a/tool/github.sh +++ b/tool/github.sh @@ -86,6 +86,8 @@ elif [ "UNIT_TEST_BOT" = "$BOT" ] ; then ./bin/plugin test --no-setup else + # Run the vefifier for this version + ./bin/plugin verify --only-version=$IDEA_VERSION # Run the build. ./bin/plugin make --channel=stable --only-version=$IDEA_VERSION --no-setup