Skip to content

Commit beb9ba4

Browse files
committed
chore: Update Plugin verification and enable gradle caching for build
Signed-off-by: Chao Wang <[email protected]>
1 parent a09fbb3 commit beb9ba4

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
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: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,5 +110,9 @@ val runIdeForUiTests by intellijPlatformTesting.runIde.registering {
110110
}
111111

112112
intellijPlatform {
113-
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
113+
pluginVerification {
114+
ides {
115+
recommended()
116+
}
117+
}
114118
}

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)