Skip to content

Commit

Permalink
Try extra disk space
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdstein committed May 15, 2024
1 parent 98e1f2f commit 471133a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,27 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Print disk space
run: df -h

- name: Free Disk Space (Ubuntu)
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
docker-images: true
swap-storage: true

- name: Print disk space
run: df -h

- uses: actions/checkout@v3

Expand Down Expand Up @@ -88,6 +109,9 @@ jobs:
git clone https://github.com/segasai/q3c.git
make -C q3c
sudo make -C q3c install
- name: Print disk space
run: df -h

# First make sure the doc tests are up to date
- name: Run doc tests
Expand Down

0 comments on commit 471133a

Please sign in to comment.