Free Up GitHub Actions Ubuntu Runner Disk Space (#1009)

Omar Hatem committed Jul 21, 2023 at 17:21 UTC b2c8b32e4907016c587edc82473836fab9c1ef6b
2 files changed +9 -2
.github/workflows/pr_test_build.yml
+7
@@ -13,6 +13,13 @@ jobs:
13 KEY_PASS: test@cake_wallet
14
15 steps:
16 + - name: Free Up GitHub Actions Ubuntu Runner Disk Space
17 + run: |
18 + sudo rm -rf /usr/share/dotnet
19 + sudo rm -rf /opt/ghc
20 + sudo rm -rf "/usr/local/share/boost"
21 + sudo rm -rf "$AGENT_TOOLSDIRECTORY"
22 +
23 - uses: actions/checkout@v2
24 - uses: actions/setup-java@v1
25 with:
lib/utils/exception_handler.dart
+2 -2
@@ -132,9 +132,9 @@ class ExceptionHandler {
132 static const List<String> _ignoredErrors = const [
133 "Bad file descriptor",
134 "No space left on device",
135 - "Write failed (OS Error: Broken pipe",
135 + "OS Error: Broken pipe",
136 "Can't assign requested address",
137 - "Read failed (OS Error: Socket is not connected",
137 + "OS Error: Socket is not connected",
138 "Operation timed out",
139 "No route to host",
140 "Software caused connection abort",