"docs/vscode:/vscode.git/clone" did not exist on "c298223f5de09e9ee265cf6a9fb9145b692b4c5b"
Unverified Commit e37915e5 authored by RunningLeon's avatar RunningLeon Committed by GitHub
Browse files

Fix disk space limit for building docker image (#404)

This reverts commit 7368b88692ecca3f5b39f92a8cc41cf21e3fd71e.
parent 450757b2
...@@ -26,7 +26,13 @@ jobs: ...@@ -26,7 +26,13 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Check disk space - name: Check disk space
run: | run: |
df -h
ls /opt/hostedtoolcache
rm -rf ${GITHUB_WORKSPACE}/.git rm -rf ${GITHUB_WORKSPACE}/.git
rm -rf /opt/hostedtoolcache/go
rm -rf /opt/hostedtoolcache/node
rm -rf /opt/hostedtoolcache/Ruby
rm -rf /opt/hostedtoolcache/CodeQL
cat /proc/cpuinfo | grep -ic proc cat /proc/cpuinfo | grep -ic proc
free free
df -h df -h
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment