Skip to content

Commit d9885cf

Browse files
committed
chore: Downgraded plugin verifier
1 parent 4430bf1 commit d9885cf

File tree

3 files changed

+49
-47
lines changed

3 files changed

+49
-47
lines changed

.github/workflows/build.yml

Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -168,52 +168,52 @@ jobs:
168168
cache-default-branch-only: true
169169

170170
# Run plugin structure verification along with IntelliJ Plugin Verifier
171-
# verify:
172-
# name: Verify plugin
173-
# needs: [ build ]
174-
# runs-on: ubuntu-latest
175-
# steps:
176-
#
177-
# # Free GitHub Actions Environment Disk Space
178-
# - name: Maximize Build Space
179-
# uses: jlumbroso/free-disk-space@main
180-
# with:
181-
# tool-cache: false
182-
# large-packages: false
183-
#
184-
# # Check out the current repository
185-
# - name: Fetch Sources
186-
# uses: actions/checkout@v4
187-
#
188-
# # Set up Java environment for the next steps
189-
# - name: Setup Java
190-
# uses: actions/setup-java@v4
191-
# with:
192-
# distribution: zulu
193-
# java-version: 21
194-
#
195-
# # Setup Gradle
196-
# - name: Setup Gradle
197-
# uses: gradle/actions/setup-gradle@v4
198-
#
199-
# # Cache Plugin Verifier IDEs
200-
# - name: Setup Plugin Verifier IDEs Cache
201-
# uses: actions/cache@v4
202-
# with:
203-
# path: ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides
204-
# key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }}
205-
#
206-
# # Run Verify Plugin task and IntelliJ Plugin Verifier tool
207-
# - name: Run Plugin Verification tasks
208-
# run: ./gradlew verifyPlugin -Dplugin.verifier.home.dir=${{ needs.build.outputs.pluginVerifierHomeDir }}
209-
#
210-
# # Collect Plugin Verifier Result
211-
# - name: Collect Plugin Verifier Result
212-
# if: ${{ always() }}
213-
# uses: actions/upload-artifact@v4
214-
# with:
215-
# name: pluginVerifier-result
216-
# path: ${{ github.workspace }}/build/reports/pluginVerifier
171+
verify:
172+
name: Verify plugin
173+
needs: [ build ]
174+
runs-on: ubuntu-latest
175+
steps:
176+
177+
# Free GitHub Actions Environment Disk Space
178+
- name: Maximize Build Space
179+
uses: jlumbroso/free-disk-space@main
180+
with:
181+
tool-cache: false
182+
large-packages: false
183+
184+
# Check out the current repository
185+
- name: Fetch Sources
186+
uses: actions/checkout@v4
187+
188+
# Set up Java environment for the next steps
189+
- name: Setup Java
190+
uses: actions/setup-java@v4
191+
with:
192+
distribution: zulu
193+
java-version: 21
194+
195+
# Setup Gradle
196+
- name: Setup Gradle
197+
uses: gradle/actions/setup-gradle@v4
198+
199+
# Cache Plugin Verifier IDEs
200+
- name: Setup Plugin Verifier IDEs Cache
201+
uses: actions/cache@v4
202+
with:
203+
path: ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides
204+
key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }}
205+
206+
# Run Verify Plugin task and IntelliJ Plugin Verifier tool
207+
- name: Run Plugin Verification tasks
208+
run: ./gradlew verifyPlugin -Dplugin.verifier.home.dir=${{ needs.build.outputs.pluginVerifierHomeDir }}
209+
210+
# Collect Plugin Verifier Result
211+
- name: Collect Plugin Verifier Result
212+
if: ${{ always() }}
213+
uses: actions/upload-artifact@v4
214+
with:
215+
name: pluginVerifier-result
216+
path: ${{ github.workspace }}/build/reports/pluginVerifier
217217

218218
# Prepare a draft release for GitHub Releases page for the manual verification
219219
# If accepted and published, release workflow would be triggered

build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ dependencies {
5353
plugins(providers.gradleProperty("platformPlugins").map { it.split(',') })
5454

5555
testFramework(TestFrameworkType.Platform)
56+
57+
pluginVerifier("1.383")
5658
}
5759
}
5860

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pluginSinceBuild = 232
1111
#pluginUntilBuild=*
1212

1313
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
14-
platformType = PS
14+
platformType = IU
1515
#platformVersion=LATEST-EAP-SNAPSHOT
1616
platformVersion = 2025.1.2
1717

0 commit comments

Comments
 (0)