Skip to content

Commit

Permalink
Fix for sonar scans
Browse files Browse the repository at this point in the history
Signed-off-by: Uladzislau <[email protected]>
  • Loading branch information
KUGDev committed Sep 27, 2024
1 parent 9692898 commit e91e2a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
echo "pluginVerifierHomeDir=~/.pluginVerifier" >> $GITHUB_OUTPUT
# prepare list of IDEs to use by plugin verifier:
./gradlew listProductsReleases
./gradlew --quiet printProductsReleases > build/productReleases.txt
- name: Build plugin
shell: bash
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
path: ${{ github.workspace }}/build/reports/kover/html

- name: SonarCloud scans
if: ${{ matrix.product == 'IC-233' }}
if: ${{ matrix.product == 'IC-243' }}
continue-on-error: true
uses: ./.github/actions/sonar
env:
Expand Down Expand Up @@ -203,12 +203,12 @@ jobs:
uses: actions/cache@v4
with:
path: ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides
key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }}
key: plugin-verifier-${{ hashFiles('build/productReleases.txt') }}

- name: Verify plugin against IntelliJ IDEA IDE's
continue-on-error: true
shell: bash
run: ./gradlew runPluginVerifier -Dplugin.verifier.home.dir=${{ needs.build.outputs.pluginVerifierHomeDir }}
run: ./gradlew verifyPlugin -Dplugin.verifier.home.dir=${{ needs.build.outputs.pluginVerifierHomeDir }}
env:
PRODUCT_NAME: ${{ matrix.product }}

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ val zoweKotlinSdkVersion = "0.5.0"
val javaKeytarVersion = "1.0.0"

plugins {
id("org.sonarqube") version "5.0.0.4638"
id("org.sonarqube") version "5.1.0.4882"
id("org.jetbrains.intellij.platform") version "2.1.0"
id("org.jetbrains.changelog") version "2.2.1"
kotlin("jvm") version "1.9.22"
Expand Down

0 comments on commit e91e2a9

Please sign in to comment.