Skip to content

Commit 92881e5

Browse files
authored
Add automatic test for various IDE versions (#66)
1 parent 1d5b642 commit 92881e5

File tree

1 file changed

+27
-3
lines changed

1 file changed

+27
-3
lines changed

.github/workflows/checkIDECompatibility.yml

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,38 @@ jobs:
1717
platformVersion: [LATEST-EAP-SNAPSHOT]
1818

1919
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+
2045
- uses: actions/checkout@v4
2146

2247
- name: Set up JDK
2348
uses: actions/setup-java@v4
2449
with:
2550
distribution: ${{ matrix.distribution }}
2651
java-version: ${{ matrix.java }}
27-
cache: 'gradle'
2852

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

0 commit comments

Comments
 (0)