diff --git a/.github/workflows/pr_test_build.yml b/.github/workflows/pr_test_build.yml index d06aca9c9..f8bb4f6ab 100644 --- a/.github/workflows/pr_test_build.yml +++ b/.github/workflows/pr_test_build.yml @@ -123,6 +123,13 @@ jobs: - name: Rename app run: echo -e "id=com.cakewallet.test\nname=$GITHUB_HEAD_REF" > /opt/android/cake_wallet/android/app.properties + - name: Free Up GitHub Actions Ubuntu Runner Disk Space + run: | + sudo rm -rf /usr/share/dotnet + sudo rm -rf /opt/ghc + sudo rm -rf "/usr/local/share/boost" + sudo rm -rf "$AGENT_TOOLSDIRECTORY" + - name: Build run: | cd /opt/android/cake_wallet diff --git a/lib/utils/exception_handler.dart b/lib/utils/exception_handler.dart index ce988bf4b..5c0ec49cc 100644 --- a/lib/utils/exception_handler.dart +++ b/lib/utils/exception_handler.dart @@ -132,9 +132,9 @@ class ExceptionHandler { static const List _ignoredErrors = const [ "Bad file descriptor", "No space left on device", - "Write failed (OS Error: Broken pipe", + "OS Error: Broken pipe", "Can't assign requested address", - "Read failed (OS Error: Socket is not connected", + "OS Error: Socket is not connected", "Operation timed out", "No route to host", "Software caused connection abort",