File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 3535 name : Build
3636 runs-on : ubuntu-latest
3737 steps :
38+ - name : Check system storage
39+ run : |
40+ sudo df -h
41+ - name : Remove unnecessary files
42+ run : |
43+ sudo rm -rf /usr/share/dotnet
44+ sudo rm -rf "$AGENT_TOOLSDIRECTORY"
45+ sudo rm -rf /usr/local/lib/android
46+ sudo rm -rf /opt/ghc
47+ - name : Check system storage
48+ run : |
49+ sudo df -h
3850 - name : Checkout
3951 uses : actions/checkout@v4
4052 - name : Get short commit hash
@@ -43,15 +55,27 @@ jobs:
4355 uses : actions/setup-go@v4
4456 with :
4557 go-version : " 1.21.0"
58+ - name : Check system storage
59+ run : |
60+ sudo df -h
4661 - name : Build Linux AMD64
4762 run : |
4863 make helmvm-linux-amd64 VERSION=dev-$SHORT_SHA
64+ - name : Check system storage
65+ run : |
66+ sudo df -h
4967 - name : Build Darwin AMD64
5068 run : |
5169 make helmvm-darwin-amd64
70+ - name : Check system storage
71+ run : |
72+ sudo df -h
5273 - name : Build Darwin ARM64 VERSION=dev-$SHORT_SHA
5374 run : |
5475 make helmvm-darwin-arm64 VERSION=dev-$SHORT_SHA
76+ - name : Check system storage
77+ run : |
78+ sudo df -h
5579 - name : Build HelmVM Builder Server Image
5680 uses : docker/build-push-action@v5
5781 with :
You can’t perform that action at this time.
0 commit comments