Workaround out of space issue when building mishy #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: machines | |
on: | |
pull_request: | |
push: | |
workflow_dispatch: | |
jobs: | |
mishy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Maximize build space | |
uses: AdityaGarg8/remove-unwanted-software@v4.1 | |
with: | |
remove-dotnet: 'true' | |
remove-android: 'true' | |
remove-haskell: 'true' | |
remove-codeql: 'true' | |
remove-docker-images: 'true' | |
- name: Bind mount /nix | |
run: | | |
sudo mkdir /nix | |
sudo mount --bind /mnt /nix | |
- name: Set swap space | |
uses: pierotofy/set-swap-space@master | |
with: | |
swap-size-gb: 10 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v27 | |
- name: Clone Repository | |
uses: actions/checkout@v4 | |
- name: Build .#mishy | |
run: | | |
nix build .#nixosConfigurations.mishy.config.system.build.toplevel | |
clawsiecats: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Nix | |
uses: cachix/install-nix-action@v27 | |
- name: Clone Repository | |
uses: actions/checkout@v4 | |
- name: Build .#clawsiecats-minimal | |
run: | | |
nix build .#nixosConfigurations.clawsiecats-minimal.config.system.build.toplevel | |
- name: Build .#clawsiecats | |
run: | | |
nix build .#nixosConfigurations.clawsiecats.config.system.build.toplevel | |
- name: Build .#clawsiecats-luks | |
run: | | |
nix build .#nixosConfigurations.clawsiecats-luks.config.system.build.toplevel |