Skip to content

Commit

Permalink
Freeing up space on CI runner
Browse files Browse the repository at this point in the history
  • Loading branch information
dbouget committed Aug 18, 2023
1 parent 46bf09a commit e0ffe35
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,19 @@ jobs:
with:
submodules: 'recursive'

- name: Free Up GitHub Actions Ubuntu Runner Disk Space
uses: jlumbroso/free-disk-space@main
with:
# This might remove tools that are actually needed, if set to "true" but frees about 6 GB
tool-cache: false

# All of these default to true, but feel free to set to "false" if necessary for your workflow
android: true
dotnet: true
haskell: true
large-packages: true
swap-storage: true

- name: Download ANTs
uses: robinraju/release-downloader@main
with:
Expand All @@ -33,6 +46,7 @@ jobs:

- name: Extract ANTs
run: |
df -h
cd ${{github.workspace}}/downloads/
tar -xzf ANTsX-v2.4.3_ubuntu.tar.gz -C ${{github.workspace}}/downloads/
mkdir ${{github.workspace}}/ANTs
Expand Down

0 comments on commit e0ffe35

Please sign in to comment.