Skip to content

Commit 0d5ddd9

Browse files
sbouchetadietish
authored andcommitted
chore: use recommended IDEs when verifying plugin
Signed-off-by: Stephane Bouchet <[email protected]>
1 parent cfe71a6 commit 0d5ddd9

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/IJ.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ on:
1212
jobs:
1313
validate:
1414
runs-on: ubuntu-latest
15-
strategy:
16-
matrix:
17-
IJ: [2023.1, 2023.2, 2023.3, 2024.1, 2024.2, 2024.3]
1815

1916
steps:
2017
- uses: actions/checkout@v4
@@ -27,9 +24,12 @@ jobs:
2724
- name: Grant execute permission for gradlew
2825
run: chmod +x gradlew
2926
- name: Build with Gradle
30-
run: ./gradlew build -PplatformVersion=${{ matrix.IJ }}
27+
run: ./gradlew build
3128
- name: Validate with Gradle
32-
run: ./gradlew verifyPlugin -PplatformVersion=${{ matrix.IJ }}
29+
run: |
30+
./gradlew verifyPlugin
31+
REPORTS=$(cat ${{ github.workspace }}/build/reports/pluginVerifier/*/report.md | sed 's/^#/##/')
32+
echo "$REPORTS" >> $GITHUB_STEP_SUMMARY
3333
- name: Upload report
3434
uses: actions/upload-artifact@v4
3535
if: always()

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ build
55
.gradle
66
out
77

8-
/.intellijPlatform/
8+
/.intellijPlatform/
9+
/.kotlin/

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ intellijPlatform {
100100

101101
pluginVerification {
102102
ides {
103-
ide(IntelliJPlatformType.IntellijIdeaUltimate, ideaVersion)
103+
recommended()
104104
}
105105
freeArgs = listOf(
106106
"-mute",

0 commit comments

Comments
 (0)