Skip to content

Commit 6aeb6cc

Browse files
committed
chore: migrate build to 2024.2
Signed-off-by: Stephane Bouchet <[email protected]>
1 parent 83a19ef commit 6aeb6cc

File tree

2 files changed

+10
-25
lines changed

2 files changed

+10
-25
lines changed

.github/workflows/IJ-latest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
run: chmod +x gradlew
2525
- name: Build with Gradle
2626
run: |
27-
LATEST-EAP-SNAPSHOT=$(./gradlew printProductsReleases | grep 'IC-' | head -n 1 | cut -d'-' -f2)
28-
./gradlew build --continue -PplatformVersion=$LATEST-EAP-SNAPSHOT
27+
LATEST_EAP_SNAPSHOT=$(./gradlew printProductsReleases | grep 'IC-' | head -n 1 | cut -d'-' -f2)
28+
./gradlew build --continue -PplatformVersion=$LATEST_EAP_SNAPSHOT
2929
- uses: actions/upload-artifact@v4
3030
if: always()
3131
with:

.github/workflows/IJ.yml

Lines changed: 8 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -28,26 +28,11 @@ jobs:
2828
run: chmod +x gradlew
2929
- name: Build with Gradle
3030
run: ./gradlew build -PplatformVersion=${{ matrix.IJ }}
31-
32-
verify:
33-
runs-on: ubuntu-latest
34-
35-
steps:
36-
- name: Checkout Code
37-
uses: actions/checkout@v4
38-
- name: Set up JDK 17
39-
uses: actions/setup-java@v4
40-
with:
41-
java-version: 17
42-
distribution: 'temurin'
43-
cache: 'gradle'
44-
- name: Grant execute permission for gradlew
45-
run: chmod +x gradlew
46-
- name: Build with Gradle
47-
run: ./gradlew verifyPlugin -PplatformVersion=${{ matrix.IJ }}
48-
- name: Upload report
49-
uses: actions/upload-artifact@v4
50-
if: always()
51-
with:
52-
name: verifier-report
53-
path: build/reports/pluginVerifier
31+
- name: Validate with Gradle
32+
run: ./gradlew verifyPlugin -PplatformVersion=${{ matrix.IJ }}
33+
- name: Upload report
34+
uses: actions/upload-artifact@v4
35+
if: always()
36+
with:
37+
name: verifier-report
38+
path: build/reports/pluginVerifier

0 commit comments

Comments
 (0)