File tree Expand file tree Collapse file tree 3 files changed +24
-0
lines changed Expand file tree Collapse file tree 3 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 27
27
spotless :
28
28
runs-on : ubuntu-latest
29
29
steps :
30
+ # spotless may fail without freeing up more disk space on the runner
31
+ - name : Free disk space
32
+ run : |
33
+ df -h
34
+ sudo rm -rf /usr/local/lib/android
35
+ sudo rm -rf /usr/share/dotnet
36
+ df -h
37
+
30
38
- uses : actions/checkout@v3
31
39
32
40
- name : Set up JDK for running Gradle
Original file line number Diff line number Diff line change 11
11
runs-on : ubuntu-latest
12
12
13
13
steps :
14
+ # analysis may fail without freeing up more disk space on the runner
15
+ - name : Free disk space
16
+ run : |
17
+ df -h
18
+ sudo rm -rf /usr/local/lib/android
19
+ sudo rm -rf /usr/share/dotnet
20
+ df -h
21
+
14
22
- uses : actions/checkout@v3
15
23
16
24
- name : Set up Java 17
Original file line number Diff line number Diff line change 30
30
- 3
31
31
fail-fast : false
32
32
steps :
33
+ # tests may fail without freeing up more disk space on the runner
34
+ - name : Free disk space
35
+ run : |
36
+ df -h
37
+ sudo rm -rf /usr/local/lib/android
38
+ sudo rm -rf /usr/share/dotnet
39
+ df -h
40
+
33
41
- uses : actions/checkout@v3
34
42
35
43
- name : Set up JDK for running Gradle
You can’t perform that action at this time.
0 commit comments