Skip to content

Commit 875db20

Browse files
committed
chore: Update Plugin verification and enable gradle caching for build
1 parent a09fbb3 commit 875db20

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/IJ.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ jobs:
5050
run: chmod +x gradlew
5151
- name: Build with Gradle
5252
run: >
53-
./gradlew runPluginVerifier
54-
-PideaVersion=IC-2022.3
53+
./gradlew verifyPlugin
5554
-Pgpr.username=${{ github.actor }}
5655
-Pgpr.token=${{ secrets.GITHUB_TOKEN }}
5756
- name: Upload report

build.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,4 +111,10 @@ val runIdeForUiTests by intellijPlatformTesting.runIde.registering {
111111

112112
intellijPlatform {
113113
buildSearchableOptions = false // no custom settings, see https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-faq.html#how-to-disable-building-the-searchable-options
114+
115+
pluginVerification {
116+
ides {
117+
recommended()
118+
}
119+
}
114120
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ kotlin.stdlib.default.dependency=false
2020
org.gradle.configuration-cache=false
2121

2222
# Enable Gradle Build Cache -> https://docs.gradle.org/current/userguide/build_cache.html
23-
org.gradle.caching=false
23+
org.gradle.caching=true

0 commit comments

Comments
 (0)