2024-07-14 18:31:01 -04:00
|
|
|
name: "nix-drybuild"
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
2024-07-15 10:21:34 -04:00
|
|
|
- '*.md'
|
2024-07-14 18:31:01 -04:00
|
|
|
- '.github/**'
|
|
|
|
- '_img/**'
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
|
|
fallarbor-drybuild:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@main
|
|
|
|
with:
|
|
|
|
fetch-depth: 1
|
|
|
|
- uses: DeterminateSystems/nix-installer-action@main
|
2024-07-15 08:22:10 -04:00
|
|
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
2024-07-14 18:31:01 -04:00
|
|
|
- name: Drybuild fallarbor
|
|
|
|
run: nix build --dry-run .#nixosConfigurations.fallarbor.config.system.build.toplevel
|
2024-07-14 18:32:57 -04:00
|
|
|
lavaridge-drybuild:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@main
|
|
|
|
with:
|
|
|
|
fetch-depth: 1
|
|
|
|
- uses: DeterminateSystems/nix-installer-action@main
|
2024-07-15 08:22:10 -04:00
|
|
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
2024-07-14 18:32:57 -04:00
|
|
|
- name: Drybuild lavaridge
|
|
|
|
run: nix build --dry-run .#nixosConfigurations.lavaridge.config.system.build.toplevel
|
|
|
|
mauville-drybuild:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@main
|
|
|
|
with:
|
|
|
|
fetch-depth: 1
|
|
|
|
- uses: DeterminateSystems/nix-installer-action@main
|
2024-07-15 08:22:10 -04:00
|
|
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
2024-07-14 18:32:57 -04:00
|
|
|
- name: Drybuild mauville
|
|
|
|
run: nix build --dry-run .#nixosConfigurations.mauville.config.system.build.toplevel
|
|
|
|
petalburg-drybuild:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@main
|
|
|
|
with:
|
|
|
|
fetch-depth: 1
|
|
|
|
- uses: DeterminateSystems/nix-installer-action@main
|
2024-07-15 08:22:10 -04:00
|
|
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
2024-07-14 18:32:57 -04:00
|
|
|
- name: Drybuild petalburg
|
|
|
|
run: nix build --dry-run .#nixosConfigurations.petalburg.config.system.build.toplevel
|
|
|
|
rustboro-drybuild:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@main
|
|
|
|
with:
|
|
|
|
fetch-depth: 1
|
|
|
|
- uses: DeterminateSystems/nix-installer-action@main
|
2024-07-15 08:22:10 -04:00
|
|
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
2024-07-14 18:32:57 -04:00
|
|
|
- name: Drybuild rustboro
|
|
|
|
run: nix build --dry-run .#nixosConfigurations.rustboro.config.system.build.toplevel
|