File tree 8 files changed +13
-64
lines changed
8 files changed +13
-64
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ jobs:
171
171
172
172
# Run Verify Plugin task and IntelliJ Plugin Verifier tool
173
173
- name : Run Plugin Verification tasks
174
- run : ./gradlew verifyPlugin -Dplugin.verifier.home.dir=${{ needs.build.outputs.pluginVerifierHomeDir }}
174
+ run : ./gradlew verifyPlugin -Dplugin.verifier.home.dir=${{ needs.build.outputs.pluginVerifierHomeDir }} -mute TemplateWordInPluginName
175
175
176
176
# Collect Plugin Verifier Result
177
177
- name : Collect Plugin Verifier Result
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ jobs:
169
169
170
170
# Run Verify Plugin task and IntelliJ Plugin Verifier tool
171
171
- name : Run Plugin Verification tasks
172
- run : ./gradlew verifyPlugin -Dplugin.verifier.home.dir=${{ needs.build.outputs.pluginVerifierHomeDir }}
172
+ run : ./gradlew verifyPlugin -Dplugin.verifier.home.dir=${{ needs.build.outputs.pluginVerifierHomeDir }} -mute TemplateWordInPluginName
173
173
174
174
# Collect Plugin Verifier Result
175
175
- name : Collect Plugin Verifier Result
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 5
5
<option name =" executionName" />
6
6
<option name =" externalProjectPath" value =" $PROJECT_DIR$" />
7
7
<option name =" externalSystemIdString" value =" GRADLE" />
8
- <option name =" scriptParameters" value =" --stacktrace " />
8
+ <option name =" scriptParameters" value =" " />
9
9
<option name =" taskDescriptions" >
10
10
<list />
11
11
</option >
19
19
<ExternalSystemDebugServerProcess >true</ExternalSystemDebugServerProcess >
20
20
<ExternalSystemReattachDebugProcess >true</ExternalSystemReattachDebugProcess >
21
21
<DebugAllEnabled >false</DebugAllEnabled >
22
- <ForceTestExec >false</ForceTestExec >
23
22
<method v =" 2" />
24
23
</configuration >
25
24
</component >
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 19
19
<ExternalSystemDebugServerProcess >true</ExternalSystemDebugServerProcess >
20
20
<ExternalSystemReattachDebugProcess >true</ExternalSystemReattachDebugProcess >
21
21
<DebugAllEnabled >false</DebugAllEnabled >
22
+ <RunAsTest >true</RunAsTest >
22
23
<method v =" 2" />
23
24
</configuration >
24
25
</component >
Original file line number Diff line number Diff line change 11
11
</option >
12
12
<option name =" taskNames" >
13
13
<list >
14
- <option value =" runPluginVerifier " />
14
+ <option value =" verifyPlugin " />
15
15
</list >
16
16
</option >
17
17
<option name =" vmOptions" value =" " />
18
18
</ExternalSystemSettings >
19
19
<ExternalSystemDebugServerProcess >true</ExternalSystemDebugServerProcess >
20
20
<ExternalSystemReattachDebugProcess >true</ExternalSystemReattachDebugProcess >
21
21
<DebugAllEnabled >false</DebugAllEnabled >
22
- <method v =" 2" >
23
- <option name =" Gradle.BeforeRunTask" enabled =" true" tasks =" clean" externalProjectPath =" $PROJECT_DIR$" vmOptions =" " scriptParameters =" " />
24
- </method >
22
+ <RunAsTest >false</RunAsTest >
23
+ <method v =" 2" />
25
24
</configuration >
26
25
</component >
Original file line number Diff line number Diff line change @@ -88,6 +88,10 @@ intellijPlatform {
88
88
}
89
89
}
90
90
91
+ pluginVerification {
92
+ freeArgs = listOf (" -mute" , " TemplateWordInPluginName" )
93
+ }
94
+
91
95
signing {
92
96
certificateChain = providers.environmentVariable(" CERTIFICATE_CHAIN" )
93
97
privateKey = providers.environmentVariable(" PRIVATE_KEY" )
@@ -99,7 +103,8 @@ intellijPlatform {
99
103
// The pluginVersion is based on the SemVer (https://semver.org) and supports pre-release labels, like 2.1.7-alpha.3
100
104
// Specify pre-release label to publish the plugin in a custom Release Channel automatically. Read more:
101
105
// https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel
102
- channels = providers.gradleProperty(" pluginVersion" ).map { listOf (it.substringAfter(' -' , " " ).substringBefore(' .' ).ifEmpty { " default" }) }
106
+ channels = providers.gradleProperty(" pluginVersion" )
107
+ .map { listOf (it.substringAfter(' -' , " " ).substringBefore(' .' ).ifEmpty { " default" }) }
103
108
}
104
109
105
110
pluginVerification {
You can’t perform that action at this time.
0 commit comments