mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-03-21 14:48:53 +00:00
Free Up GitHub Actions Ubuntu Runner Disk Space
This commit is contained in:
parent
25228a3163
commit
5965f20c94
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
|
@ -123,6 +123,13 @@ jobs:
|
||||||
- name: Rename app
|
- name: Rename app
|
||||||
run: echo -e "id=com.cakewallet.test\nname=$GITHUB_HEAD_REF" > /opt/android/cake_wallet/android/app.properties
|
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
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
cd /opt/android/cake_wallet
|
cd /opt/android/cake_wallet
|
||||||
|
|
|
@ -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",
|
||||||
|
|
Loading…
Reference in a new issue