-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (48 loc) · 1.35 KB
/
check-ide-compatibility.yml
File metadata and controls
54 lines (48 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Check IDE Compatibility
on:
schedule:
- cron: '55 2 * * 1'
workflow_dispatch:
jobs:
check-ide-compatibility:
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- name: Free up disk space
run: |
sudo df -h
sudo docker system prune -af || true
sudo rm -rf /usr/share/dotnet \
/usr/local/.ghcup \
/usr/local/swift \
/usr/share/swift \
/usr/lib/jvm \
/usr/local/lib/android \
/usr/lib/google-cloud-sdk \
/usr/local/share/boost \
/usr/local/share/powershell \
/usr/local/share/chromium \
/usr/local/lib/node_modules \
/usr/lib/mono \
/usr/lib/heroku \
/usr/lib/firefox \
/usr/share/miniconda \
/opt/microsoft \
/opt/chrome \
/opt/pipx \
"$AGENT_TOOLSDIRECTORY" || true
sudo df -h
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
- name: Check compatibility
run: ./gradlew verifyPlugin --info --stacktrace
- name: Upload report
uses: actions/upload-artifact@v4
with:
name: plugin-verifier-reports
path: build/reports/pluginVerifier/**
if-no-files-found: warn