File tree 2 files changed +10
-25
lines changed
2 files changed +10
-25
lines changed Original file line number Diff line number Diff line change 24
24
run : chmod +x gradlew
25
25
- name : Build with Gradle
26
26
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
29
29
- uses : actions/upload-artifact@v4
30
30
if : always()
31
31
with :
Original file line number Diff line number Diff line change @@ -28,26 +28,11 @@ jobs:
28
28
run : chmod +x gradlew
29
29
- name : Build with Gradle
30
30
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
You can’t perform that action at this time.
0 commit comments