2024-01-23 16:09:05 -06:00
|
|
|
name: Build NixOS
|
|
|
|
|
2024-01-23 11:51:13 -06:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2024-01-23 12:50:48 -06:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
2024-01-24 00:11:55 -06:00
|
|
|
env:
|
|
|
|
HOSTS: "algiz othalan mannaz"
|
2024-01-23 11:51:13 -06:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2024-01-24 00:11:55 -06:00
|
|
|
# strategy:
|
|
|
|
# matrix:
|
|
|
|
# hosts: "algiz othalan mannaz"
|
2024-01-23 16:54:28 -06:00
|
|
|
# try to use the cache here along the way
|
2024-01-24 00:11:55 -06:00
|
|
|
# fail-fast: true
|
|
|
|
# max-parallel: 1
|
2024-01-23 11:51:13 -06:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-01-23 14:51:12 -06:00
|
|
|
# free up some space
|
2024-01-23 13:10:13 -06:00
|
|
|
- run: sudo rm -rf /opt&
|
2024-01-23 14:51:12 -06:00
|
|
|
|
2024-01-23 11:51:13 -06:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: cachix/install-nix-action@v25 # v25
|
|
|
|
with:
|
|
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
|
|
- uses: DeterminateSystems/magic-nix-cache-action@v2
|
|
|
|
- uses: cachix/cachix-action@v14
|
|
|
|
with:
|
|
|
|
name: daylin
|
|
|
|
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
|
|
|
|
- name: Build
|
2024-01-24 00:20:11 -06:00
|
|
|
shell: bash
|
2024-01-23 15:50:49 -06:00
|
|
|
run: |
|
2024-01-24 00:21:42 -06:00
|
|
|
#for host in "${HOSTS[@]}"
|
|
|
|
for host in algiz othalan mannaz
|
2024-01-24 00:11:55 -06:00
|
|
|
do
|
|
|
|
cachix watch-exec daylin -- \
|
|
|
|
nix build \
|
|
|
|
".#nixosConfigurations.$host.config.system.build.toplevel" \
|
|
|
|
--accept-flake-config \
|
|
|
|
--print-build-logs
|
|
|
|
done
|
2024-01-23 11:51:13 -06:00
|
|
|
- name: Push
|
|
|
|
env:
|
|
|
|
CACHIX_ACTIVATE_TOKEN: "${{ secrets.CACHIX_ACTIVATE_TOKEN }}"
|
|
|
|
run: cachix push daylin ./result
|