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

This commit is contained in:
Omar Hatem 2023-07-21 17:21:37 +03:00 committed by GitHub
parent 8996a46784
commit b2c8b32e49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 2 deletions

View file

@ -13,6 +13,13 @@ jobs:
KEY_PASS: test@cake_wallet KEY_PASS: test@cake_wallet
steps: steps:
- 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"
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions/setup-java@v1 - uses: actions/setup-java@v1
with: with:

View file

@ -132,9 +132,9 @@ class ExceptionHandler {
static const List<String> _ignoredErrors = const [ static const List<String> _ignoredErrors = const [
"Bad file descriptor", "Bad file descriptor",
"No space left on device", "No space left on device",
"Write failed (OS Error: Broken pipe", "OS Error: Broken pipe",
"Can't assign requested address", "Can't assign requested address",
"Read failed (OS Error: Socket is not connected", "OS Error: Socket is not connected",
"Operation timed out", "Operation timed out",
"No route to host", "No route to host",
"Software caused connection abort", "Software caused connection abort",