We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93bd4ec commit 414f151Copy full SHA for 414f151
.github/workflows/cli-tests.yaml
@@ -149,6 +149,12 @@ jobs:
149
DEVBOX_DEBUG: ${{ (matrix.run-project-tests == 'project-tests-off' || inputs.example-debug) && '1' || '0' }}
150
DEVBOX_GOLANG_TEST_TIMEOUT: "${{ (github.ref == 'refs/heads/main' || inputs.run-mac-tests) && '1h' || '30m' }}"
151
steps:
152
+ - name: clear directories to reduce disk usage
153
+ # https://github.com/actions/runner-images/issues/2840#issuecomment-1284059930
154
+ run: |
155
+ sudo rm -rf /usr/share/dotnet
156
+ sudo rm -rf "$AGENT_TOOLSDIRECTORY"
157
+
158
- uses: actions/checkout@v4
159
- name: Mount golang cache
160
uses: actions/cache@v4
0 commit comments