Skip to content

Commit 8aa35f1

Browse files
committed
Inspect persistent cache disk usage
1 parent 23fa526 commit 8aa35f1

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ jobs:
4242
- name: Git Checkout
4343
uses: actions/checkout@v2
4444

45+
- name: Inspect persistent cache disk usage
46+
run: du -hd1 /root
47+
4548
- name: Add SBT proxy repositories
4649
run: cp -vf .github/workflows/repositories /root/.sbt/ ; true
4750

@@ -50,6 +53,9 @@ jobs:
5053
./project/scripts/sbt ";compile ;test"
5154
./project/scripts/cmdTests
5255
56+
- name: Inspect persistent cache disk usage
57+
run: du -hd2 /root
58+
5359
test_bootstrapped:
5460
runs-on: [self-hosted, Linux]
5561
container:
@@ -74,6 +80,9 @@ jobs:
7480
- name: Git Checkout
7581
uses: actions/checkout@v2
7682

83+
- name: Inspect persistent cache disk usage
84+
run: du -hd1 /root
85+
7786
- name: Add SBT proxy repositories
7887
run: cp -vf .github/workflows/repositories /root/.sbt/ ; true
7988

@@ -82,6 +91,9 @@ jobs:
8291
./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"
8392
./project/scripts/bootstrapCmdTests
8493
94+
- name: Inspect persistent cache disk usage
95+
run: du -hd2 /root
96+
8597
## Only run bootstrapped tests for Windows since that's a superset of the
8698
## non-bootstrapped tests and bootstrapping issues should be caught by
8799
## the non-bootstrapped Linux runner.
@@ -141,6 +153,9 @@ jobs:
141153
- name: Git Checkout
142154
uses: actions/checkout@v2
143155

156+
- name: Inspect persistent cache disk usage
157+
run: du -hd1 /root
158+
144159
- name: Add SBT proxy repositories
145160
run: cp -vf .github/workflows/repositories /root/.sbt/ ; true
146161

@@ -153,6 +168,9 @@ jobs:
153168
run: |
154169
./project/scripts/sbt "community-build/testOnly dotty.communitybuild.CommunityBuildTestA"
155170
171+
- name: Inspect persistent cache disk usage
172+
run: du -hd2 /root
173+
156174
community_build_b:
157175
runs-on: [self-hosted, Linux]
158176
container:
@@ -172,6 +190,9 @@ jobs:
172190
- name: Git Checkout
173191
uses: actions/checkout@v2
174192

193+
- name: Inspect persistent cache disk usage
194+
run: du -hd1 /root
195+
175196
- name: Add SBT proxy repositories
176197
run: cp -vf .github/workflows/repositories /root/.sbt/ ; true
177198

@@ -184,6 +205,9 @@ jobs:
184205
run: |
185206
./project/scripts/sbt "community-build/testOnly dotty.communitybuild.CommunityBuildTestB"
186207
208+
- name: Inspect persistent cache disk usage
209+
run: du -hd2 /root
210+
187211
test_sbt:
188212
runs-on: [self-hosted, Linux]
189213
container:

0 commit comments

Comments
 (0)