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 3caed23 commit 88adb74Copy full SHA for 88adb74
.github/workflows/e2e.yml
@@ -42,6 +42,19 @@ jobs:
42
restore-keys: |
43
${{ runner.os }}-go-
44
45
+ # The default disk size of these runners is ~14GB, this is not enough to run the e2e tests.
46
+ # Cleanup the disk, see upstream discussion https://github.com/actions/runner-images/issues/2840.
47
+ - name: Cleanup Disk Space
48
+ run: |
49
+ echo "Before removing files:"
50
+ df -h
51
+ sudo rm -rf /usr/share/dotnet
52
+ sudo rm -rf /opt/ghc
53
+ sudo rm -rf "/usr/local/share/boost"
54
+ sudo rm -rf "$AGENT_TOOLSDIRECTORY"
55
+ echo "After removing files:"
56
57
+
58
- name: Run e2e tests
59
run: devbox run -- make e2e-test E2E_LABEL='provider:${{ inputs.provider }}' E2E_SKIP='${{ inputs.skip }}' E2E_FOCUS='${{ inputs.focus }}'
60
env:
0 commit comments