Skip to content

Commit

Permalink
fix: disable plugin verifier
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Jul 25, 2023
1 parent 04a785b commit a4bcd00
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/build.yml
Expand Up @@ -94,23 +94,23 @@ jobs:
files: ${{ github.workspace }}/build/reports/kover/xml/report.xml

# Cache Plugin Verifier IDEs
- name: Setup Plugin Verifier IDEs Cache
uses: actions/cache@v3
with:
path: ${{ steps.properties.outputs.pluginVerifierHomeDir }}/ides
key: plugin-verifier-${{ hashFiles('plugin/build/listProductsReleases.txt') }}

# Run Verify Plugin task and IntelliJ Plugin Verifier tool
- name: Run Plugin Verification tasks
run: ./gradlew :plugin:runPluginVerifier -Dplugin.verifier.home.dir=${{ steps.properties.outputs.pluginVerifierHomeDir }}

# Collect Plugin Verifier Result
- name: Collect Plugin Verifier Result
if: ${{ always() }}
uses: actions/upload-artifact@v3
with:
name: pluginVerifier-result
path: ${{ github.workspace }}/plugin/build/reports/pluginVerifier
# - name: Setup Plugin Verifier IDEs Cache
# uses: actions/cache@v3
# with:
# path: ${{ steps.properties.outputs.pluginVerifierHomeDir }}/ides
# key: plugin-verifier-${{ hashFiles('plugin/build/listProductsReleases.txt') }}
#
# # Run Verify Plugin task and IntelliJ Plugin Verifier tool
# - name: Run Plugin Verification tasks
# run: ./gradlew :plugin:runPluginVerifier -Dplugin.verifier.home.dir=${{ steps.properties.outputs.pluginVerifierHomeDir }}
#
# # Collect Plugin Verifier Result
# - name: Collect Plugin Verifier Result
# if: ${{ always() }}
# uses: actions/upload-artifact@v3
# with:
# name: pluginVerifier-result
# path: ${{ github.workspace }}/plugin/build/reports/pluginVerifier

# Run Qodana inspections
# - name: Qodana - Code Inspection
Expand Down

0 comments on commit a4bcd00

Please sign in to comment.