oizys/.github/workflows/build.yml

59 lines
1.5 KiB
YAML
Raw Permalink Normal View History

2024-05-23 13:27:08 -05:00
name: Build NixOS (on demand)
2024-01-23 16:09:05 -06:00
2024-01-23 11:51:13 -06:00
on:
2024-05-23 13:27:08 -05:00
workflow_dispatch:
inputs:
host:
2024-06-14 15:02:01 -05:00
description: 'list of hosts to build'
2024-05-23 13:27:08 -05:00
required: true
2024-06-14 15:02:01 -05:00
default: 'othalan algiz'
2024-05-23 13:27:08 -05:00
type: string
lockFile:
description: 'flake.lock file'
type: string
workflow_call:
inputs:
host:
2024-06-14 15:02:01 -05:00
description: 'list of hosts to build'
2024-05-23 13:27:08 -05:00
required: true
2024-06-14 15:02:01 -05:00
default: 'othalan aligz'
2024-05-23 13:27:08 -05:00
type: string
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ inputs.host }}
cancel-in-progress: true
2024-01-23 11:51:13 -06:00
jobs:
build:
runs-on: ubuntu-latest
steps:
2024-06-14 12:17:39 -05:00
- name: Checkout
uses: actions/checkout@v4
2024-06-14 12:17:39 -05:00
2024-06-14 15:02:01 -05:00
- uses: ./.github/actions/clean-disk
2024-05-23 13:27:08 -05:00
2024-06-18 11:14:15 -05:00
- uses: DeterminateSystems/nix-installer-action@v12
with:
extra-conf: |
accept-flake-config = true
- uses: DeterminateSystems/magic-nix-cache-action@v7
2024-02-19 14:16:00 -06:00
- uses: cachix/cachix-action@v15
2024-01-23 11:51:13 -06:00
with:
name: daylin
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
2024-02-19 14:16:00 -06:00
2024-05-23 13:27:08 -05:00
- name: write lock file
if: "${{ inputs.lockFile != '' }}"
run: |
echo '${{ inputs.lockFile }}' > flake.lock
git diff
2024-01-30 13:40:15 -06:00
- name: Build
run: |
2024-06-14 15:02:01 -05:00
for host in ${{ inputs.host }}; do
2024-06-18 12:25:21 -05:00
cachix watch-exec daylin -- nix build --print-build-logs "$(nix run . -- output --system-path --host "$host" --flake .)^*"
# nix run . --accept-flake-config -- cache --host "$host" --flake .
2024-06-14 15:02:01 -05:00
done