mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 01:37:40 +00:00
Free Up GitHub Actions Ubuntu Runner Disk Space (#1009)
This commit is contained in:
parent
8996a46784
commit
b2c8b32e49
2 changed files with 9 additions and 2 deletions
7
.github/workflows/pr_test_build.yml
vendored
7
.github/workflows/pr_test_build.yml
vendored
|
@ -13,6 +13,13 @@ jobs:
|
|||
KEY_PASS: test@cake_wallet
|
||||
|
||||
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/setup-java@v1
|
||||
with:
|
||||
|
|
|
@ -132,9 +132,9 @@ class ExceptionHandler {
|
|||
static const List<String> _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",
|
||||
|
|
Loading…
Reference in a new issue