24 lines
961 B
YAML
24 lines
961 B
YAML
on: [push]
|
|
|
|
jobs:
|
|
cache:
|
|
runs-on: native
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v5
|
|
- name: Setup Attic cache
|
|
uses: https://github.com/ryanccn/attic-action@v0
|
|
with:
|
|
endpoint: ${{ secrets.ATTIC_ENDPOINT }}
|
|
cache: ${{ secrets.ATTIC_CACHE }}
|
|
token: ${{ secrets.ATTIC_TOKEN }}
|
|
- name: Build baldur configuration
|
|
run: nix build .#nixosConfigurations.baldur.config.system.build.toplevel
|
|
- name: Build bragi configuration
|
|
run: nix build .#nixosConfigurations.bragi.config.system.build.toplevel
|
|
- name: Build thor configuration
|
|
run: nix build .#nixosConfigurations.thor.config.system.build.toplevel
|
|
- name: Build odin configuration
|
|
run: nix build .#nixosConfigurations.odin.config.system.build.toplevel
|
|
- name: Build freyja configuration
|
|
run: nix build .#nixosConfigurations.freyja.config.system.build.toplevel
|