Skip to content

Run ci on PR

Run ci on PR #41

Workflow file for this run

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'
#
# Filesystem on /mnt for some reason has more space on GitHub action
# runner than /
- name: Bind mount /nix
run: |
sudo mkdir /nix
sudo chmod 0755 /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