-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update parachain dependencies to
polkadot-v1.1.0
(#2936)
* node compiles * update fmt * update scripts * cargo test pass * make clippy works * remove log * remove pallet-parentchain * node compiles * node and runtime compiles * use 0.9.42 for worker * fix bc worker * try to fix tests * comment out * fix launch and asset config * update rpc ports * use new release * fix * use new action * fix path * fix path * checkout first * bump versions * update lock * uncomment * remove it * fix test
- Loading branch information
1 parent
04381ca
commit b66d347
Showing
171 changed files
with
5,452 additions
and
6,424 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Disk cleanup | ||
description: "Cleanup disk space" | ||
runs: | ||
using: composite | ||
steps: | ||
- name: Free up disk space | ||
shell: bash | ||
run: | | ||
echo "Disk space before cleanup..." | ||
df -h / | ||
echo "Removing unnecessary files to free up disk space..." | ||
# https://github.com/actions/runner-images/issues/2840#issuecomment-2272410832 | ||
sudo rm -rf \ | ||
/opt/hostedtoolcache \ | ||
/opt/google/chrome \ | ||
/opt/microsoft/msedge \ | ||
/opt/microsoft/powershell \ | ||
/opt/pipx \ | ||
/usr/lib/mono \ | ||
/usr/local/julia* \ | ||
/usr/local/lib/android \ | ||
/usr/local/lib/node_modules \ | ||
/usr/local/share/chromium \ | ||
/usr/local/share/powershell \ | ||
/usr/share/dotnet \ | ||
/usr/share/swift | ||
echo "Disk space after cleanup..." | ||
df -h / |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.