42
42
- name : Git Checkout
43
43
uses : actions/checkout@v2
44
44
45
+ - name : Inspect persistent cache disk usage
46
+ run : du -hd1 /root
47
+
45
48
- name : Add SBT proxy repositories
46
49
run : cp -vf .github/workflows/repositories /root/.sbt/ ; true
47
50
50
53
./project/scripts/sbt ";compile ;test"
51
54
./project/scripts/cmdTests
52
55
56
+ - name : Inspect persistent cache disk usage
57
+ run : du -hd2 /root
58
+
53
59
test_bootstrapped :
54
60
runs-on : [self-hosted, Linux]
55
61
container :
74
80
- name : Git Checkout
75
81
uses : actions/checkout@v2
76
82
83
+ - name : Inspect persistent cache disk usage
84
+ run : du -hd1 /root
85
+
77
86
- name : Add SBT proxy repositories
78
87
run : cp -vf .github/workflows/repositories /root/.sbt/ ; true
79
88
82
91
./project/scripts/sbt ";scala3-bootstrapped/compile ;scala3-bootstrapped/test;sjsSandbox/run;sjsSandbox/test;sjsJUnitTests/test;sjsCompilerTests/test ;sbt-dotty/scripted scala2-compat/* ;configureIDE ;stdlib-bootstrapped/test:run ;stdlib-bootstrapped-tasty-tests/test"
83
92
./project/scripts/bootstrapCmdTests
84
93
94
+ - name : Inspect persistent cache disk usage
95
+ run : du -hd2 /root
96
+
85
97
# # Only run bootstrapped tests for Windows since that's a superset of the
86
98
# # non-bootstrapped tests and bootstrapping issues should be caught by
87
99
# # the non-bootstrapped Linux runner.
@@ -141,6 +153,9 @@ jobs:
141
153
- name : Git Checkout
142
154
uses : actions/checkout@v2
143
155
156
+ - name : Inspect persistent cache disk usage
157
+ run : du -hd1 /root
158
+
144
159
- name : Add SBT proxy repositories
145
160
run : cp -vf .github/workflows/repositories /root/.sbt/ ; true
146
161
@@ -153,6 +168,9 @@ jobs:
153
168
run : |
154
169
./project/scripts/sbt "community-build/testOnly dotty.communitybuild.CommunityBuildTestA"
155
170
171
+ - name : Inspect persistent cache disk usage
172
+ run : du -hd2 /root
173
+
156
174
community_build_b :
157
175
runs-on : [self-hosted, Linux]
158
176
container :
@@ -172,6 +190,9 @@ jobs:
172
190
- name : Git Checkout
173
191
uses : actions/checkout@v2
174
192
193
+ - name : Inspect persistent cache disk usage
194
+ run : du -hd1 /root
195
+
175
196
- name : Add SBT proxy repositories
176
197
run : cp -vf .github/workflows/repositories /root/.sbt/ ; true
177
198
@@ -184,6 +205,9 @@ jobs:
184
205
run : |
185
206
./project/scripts/sbt "community-build/testOnly dotty.communitybuild.CommunityBuildTestB"
186
207
208
+ - name : Inspect persistent cache disk usage
209
+ run : du -hd2 /root
210
+
187
211
test_sbt :
188
212
runs-on : [self-hosted, Linux]
189
213
container :
0 commit comments