File tree Expand file tree Collapse file tree 1 file changed +27
-3
lines changed Expand file tree Collapse file tree 1 file changed +27
-3
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,38 @@ jobs:
17
17
platformVersion : [LATEST-EAP-SNAPSHOT]
18
18
19
19
steps :
20
+ - name : Free up disk space
21
+ run : |
22
+ sudo df -h
23
+ sudo docker system prune -af || true
24
+ sudo rm -rf /usr/share/dotnet \
25
+ /usr/local/.ghcup \
26
+ /usr/local/swift \
27
+ /usr/share/swift \
28
+ /usr/lib/jvm \
29
+ /usr/local/lib/android \
30
+ /usr/lib/google-cloud-sdk \
31
+ /usr/local/share/boost \
32
+ /usr/local/share/powershell \
33
+ /usr/local/share/chromium \
34
+ /usr/local/lib/node_modules \
35
+ /usr/lib/mono \
36
+ /usr/lib/heroku \
37
+ /usr/lib/firefox \
38
+ /usr/share/miniconda \
39
+ /opt/microsoft \
40
+ /opt/chrome \
41
+ /opt/pipx \
42
+ "$AGENT_TOOLSDIRECTORY" || true
43
+ sudo df -h
44
+
20
45
- uses : actions/checkout@v4
21
46
22
47
- name : Set up JDK
23
48
uses : actions/setup-java@v4
24
49
with :
25
50
distribution : ${{ matrix.distribution }}
26
51
java-version : ${{ matrix.java }}
27
- cache : ' gradle'
28
52
29
- - name : Build
30
- run : ./gradlew runPluginVerifier -PplatformVersion=LATEST-EAP-SNAPSHOT --debug
53
+ - name : Check compatibility
54
+ run : ./gradlew runPluginVerifier -PplatformVersion=LATEST-EAP-SNAPSHOT --info
You can’t perform that action at this time.
0 commit comments