Skip to content

Commit

Permalink
Free up space before flake check
Browse files Browse the repository at this point in the history
  • Loading branch information
ritiek committed Dec 25, 2024
1 parent ee3f769 commit 324e83e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,24 @@ jobs:
keys:
runs-on: ubuntu-latest
steps:
- name: Maximize build space
uses: AdityaGarg8/remove-unwanted-software@v4.1
with:
verbose: 'true'
remove-dotnet: 'true'
remove-android: 'true'
remove-haskell: 'true'
remove-codeql: 'true'
remove-docker-images: 'true'
remove-large-packages: 'true'
remove-cached-tools: 'true'
remove-swapfile: 'true'
# Derivations are built under /tmp
- name: Bind mount /tmp
run: |
sudo mkdir /mnt/nix /nix
sudo chmod 0755 /nix
sudo mount --bind /mnt/nix /nix
- name: Install dependencies
run: |
sudo apt-get update
Expand Down

0 comments on commit 324e83e

Please sign in to comment.