@@ -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
0 commit comments