From b06aabd0ad003c91dce2426187539b2071d91334 Mon Sep 17 00:00:00 2001 From: LiLittleCat Date: Wed, 10 Aug 2022 01:22:55 +0800 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 42 ++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 61ba339..f0241a8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -70,35 +70,35 @@ jobs: ./gradlew listProductsReleases # prepare list of IDEs for Plugin Verifier # Run tests - - name: Run Tests - run: ./gradlew test +# - name: Run Tests +# run: ./gradlew test # Collect Tests Result of failed tests - - name: Collect Tests Result - if: ${{ failure() }} - uses: actions/upload-artifact@v2 - with: - name: tests-result - path: ${{ github.workspace }}/build/reports/tests +# - name: Collect Tests Result +# if: ${{ failure() }} +# uses: actions/upload-artifact@v2 +# with: +# name: tests-result +# path: ${{ github.workspace }}/build/reports/tests # Cache Plugin Verifier IDEs - - name: Setup Plugin Verifier IDEs Cache - uses: actions/cache@v2.1.7 - with: - path: ${{ steps.properties.outputs.pluginVerifierHomeDir }}/ides - key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }} +# - name: Setup Plugin Verifier IDEs Cache +# uses: actions/cache@v2.1.7 +# with: +# path: ${{ steps.properties.outputs.pluginVerifierHomeDir }}/ides +# key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }} # Run Verify Plugin task and IntelliJ Plugin Verifier tool - - name: Run Plugin Verification tasks - run: ./gradlew runPluginVerifier -Pplugin.verifier.home.dir=${{ steps.properties.outputs.pluginVerifierHomeDir }} +# - name: Run Plugin Verification tasks +# run: ./gradlew runPluginVerifier -Pplugin.verifier.home.dir=${{ steps.properties.outputs.pluginVerifierHomeDir }} # Collect Plugin Verifier Result - - name: Collect Plugin Verifier Result - if: ${{ always() }} - uses: actions/upload-artifact@v2 - with: - name: pluginVerifier-result - path: ${{ github.workspace }}/build/reports/pluginVerifier +# - name: Collect Plugin Verifier Result +# if: ${{ always() }} +# uses: actions/upload-artifact@v2 +# with: +# name: pluginVerifier-result +# path: ${{ github.workspace }}/build/reports/pluginVerifier # Run Qodana inspections # - name: Qodana - Code Inspection