26
26
- ${{ github.workspace }}/../../cache/sbt:/root/.sbt
27
27
- ${{ github.workspace }}/../../cache/ivy:/root/.ivy2/cache
28
28
- ${{ github.workspace }}/../../cache/general:/root/.cache
29
- if : " !(github.event_name == 'push' &&
30
- startsWith(github.event.ref, 'refs/tags/sbt-dotty-'))"
31
-
29
+ # if: "!(github.event_name == 'push' &&
30
+ # startsWith(github.event.ref, 'refs/tags/sbt-dotty-'))"
31
+ if : false
32
32
steps :
33
33
- name : Set JDK 14 as default
34
34
run : echo "/usr/lib/jvm/java-14-openjdk-amd64/bin" >> $GITHUB_PATH
64
64
- ${{ github.workspace }}/../../cache/sbt:/root/.sbt
65
65
- ${{ github.workspace }}/../../cache/ivy:/root/.ivy2/cache
66
66
- ${{ github.workspace }}/../../cache/general:/root/.cache
67
- if : " !(github.event_name == 'push' &&
68
- startsWith(github.event.ref, 'refs/tags/sbt-dotty-'))"
69
-
67
+ # if: "!(github.event_name == 'push' &&
68
+ # startsWith(github.event.ref, 'refs/tags/sbt-dotty-'))"
69
+ if : false
70
70
steps :
71
71
- name : Set JDK 14 as default
72
72
run : echo "/usr/lib/jvm/java-14-openjdk-amd64/bin" >> $GITHUB_PATH
@@ -129,6 +129,7 @@ jobs:
129
129
community_build :
130
130
runs-on : [self-hosted, Linux]
131
131
container : lampepfl/dotty:2020-09-08
132
+ if : false
132
133
133
134
steps :
134
135
- name : Test
@@ -142,6 +143,7 @@ jobs:
142
143
- ${{ github.workspace }}/../../cache/sbt:/root/.sbt
143
144
- ${{ github.workspace }}/../../cache/ivy:/root/.ivy2/cache
144
145
- ${{ github.workspace }}/../../cache/general:/root/.cache
146
+ if : false
145
147
146
148
steps :
147
149
- name : Checkout cleanup script
@@ -179,6 +181,7 @@ jobs:
179
181
- ${{ github.workspace }}/../../cache/sbt:/root/.sbt
180
182
- ${{ github.workspace }}/../../cache/ivy:/root/.ivy2/cache
181
183
- ${{ github.workspace }}/../../cache/general:/root/.cache
184
+ if : false
182
185
183
186
steps :
184
187
- name : Checkout cleanup script
@@ -216,11 +219,11 @@ jobs:
216
219
- ${{ github.workspace }}/../../cache/sbt:/root/.sbt
217
220
- ${{ github.workspace }}/../../cache/ivy:/root/.ivy2/cache
218
221
- ${{ github.workspace }}/../../cache/general:/root/.cache
219
- if : (
220
- github.event_name == 'push' &&
221
- startsWith(github.event.ref, 'refs/tags/')
222
- ) ||
223
- github.event_name == 'schedule'
222
+ # if: (
223
+ # github.event_name == 'push' &&
224
+ # startsWith(github.event.ref, 'refs/tags/')
225
+ # ) ||
226
+ # github.event_name == 'schedule'
224
227
225
228
steps :
226
229
- name : Checkout cleanup script
@@ -232,12 +235,18 @@ jobs:
232
235
- name : Git Checkout
233
236
uses : actions/checkout@v2
234
237
238
+ - name : Inspect persistent cache disk usage
239
+ run : du -hd1 /root
240
+
235
241
- name : Add SBT proxy repositories
236
242
run : cp -vf .github/workflows/repositories /root/.sbt/ ; true
237
243
238
244
- name : Test
239
245
run : ./project/scripts/sbt sbt-dotty/scripted
240
246
247
+ - name : Inspect persistent cache disk usage
248
+ run : du -hd2 /root
249
+
241
250
test_java8 :
242
251
runs-on : [self-hosted, Linux]
243
252
container :
@@ -247,12 +256,12 @@ jobs:
247
256
- ${{ github.workspace }}/../../cache/ivy:/root/.ivy2/cache
248
257
- ${{ github.workspace }}/../../cache/general:/root/.cache
249
258
250
- if : " (
251
- github.event_name == 'push' &&
252
- startsWith(github.event.ref, 'refs/tags/') &&
253
- !startsWith(github.event.ref, 'refs/tags/sbt-dotty-')
254
- ) ||
255
- github.event_name == 'schedule'"
259
+ # if: "(
260
+ # github.event_name == 'push' &&
261
+ # startsWith(github.event.ref, 'refs/tags/') &&
262
+ # !startsWith(github.event.ref, 'refs/tags/sbt-dotty-')
263
+ # ) ||
264
+ # github.event_name == 'schedule'"
256
265
257
266
steps :
258
267
- name : Set JDK 8 as default
@@ -267,12 +276,18 @@ jobs:
267
276
- name : Git Checkout
268
277
uses : actions/checkout@v2
269
278
279
+ - name : Inspect persistent cache disk usage
280
+ run : du -hd1 /root
281
+
270
282
- name : Add SBT proxy repositories
271
283
run : cp -vf .github/workflows/repositories /root/.sbt/ ; true
272
284
273
285
- name : Test
274
286
run : ./project/scripts/sbt ";compile ;test"
275
287
288
+ - name : Inspect persistent cache disk usage
289
+ run : du -hd2 /root
290
+
276
291
publish_nightly :
277
292
runs-on : [self-hosted, Linux]
278
293
container :
0 commit comments