We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d055105 + b7540a3 commit 33fc59bCopy full SHA for 33fc59b
.github/workflows/main.yaml
@@ -46,12 +46,31 @@ jobs:
46
- name: Build Contracts
47
run: make build
48
49
+ - name: Clean up disk space
50
+ run: |
51
+ df -h
52
+ rm -rf /usr/share/dotnet
53
+ rm -rf /opt/ghc
54
+ rm -rf "/usr/local/share/boost"
55
+ rm -rf "$AGENT_TOOLSDIRECTORY"
56
+ rm -rf /usr/local/lib/android
57
+ rm -rf /opt/hostedtoolcache
58
+ rm -rf /__t/CodeQL
59
60
+ du -h / | sort -h |tail -n 50
61
+
62
63
- name: Compilation
64
run: |
65
cd testing
66
rustup target add wasm32-unknown-unknown
67
cargo build
68
69
+ - name: Check disk space
70
71
72
73
74
- name: Test-Account
75
run: cd testing && cargo test account -- --nocapture
76
0 commit comments