2024-05-23 13:27:08 -05:00
|
|
|
name: Build NixOS
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2024-06-12 12:52:33 -05:00
|
|
|
paths-ignore:
|
|
|
|
- '**/*.md'
|
2024-05-23 13:27:08 -05:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
2024-06-18 11:14:15 -05:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ inputs.host }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2024-05-23 13:27:08 -05:00
|
|
|
jobs:
|
2024-06-18 12:25:21 -05:00
|
|
|
# checks:
|
|
|
|
# uses: ./.github/workflows/checks.yml
|
|
|
|
# secrets: inherit
|
|
|
|
|
2024-05-23 13:27:08 -05:00
|
|
|
build:
|
2024-06-18 12:25:21 -05:00
|
|
|
# needs: checks
|
2024-05-23 13:27:08 -05:00
|
|
|
strategy:
|
|
|
|
max-parallel: 1
|
|
|
|
matrix:
|
|
|
|
host:
|
|
|
|
- othalan
|
|
|
|
# - mannaz
|
|
|
|
# - algiz
|
|
|
|
uses: ./.github/workflows/build.yml
|
|
|
|
with:
|
|
|
|
host: "${{ matrix.host }}"
|
|
|
|
secrets: inherit
|