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.
1 parent 2b11446 commit 050922dCopy full SHA for 050922d
.github/workflows/build.yml
@@ -83,9 +83,13 @@ jobs:
83
name: build in ubuntu docker with cuda
84
runs-on: ubuntu-22.04
85
steps:
86
+ - name: Free up disk space
87
+ run: |
88
+ rm -rf /usr/share/dotnet && rm -rf /opt/ghc && rm -rf "/usr/local/share/boost"
89
+ rm -rf /opt/hostedtoolcache && cd /opt && find . -maxdepth 1 -mindepth 1 '!' -path ./containerd '!' -path ./actionarchivecache '!' -path ./runner '!' -path ./runner-cache -exec rm -rf '{}' ';'
90
+ docker system prune -af
91
- name: Checkout code
92
uses: actions/checkout@v4
-
93
- name: pull base image
94
id: cuda_ubuntu_pull
95
run: |
0 commit comments