mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
add matrix for update
This commit is contained in:
parent
a4fda47388
commit
f8754b8105
1 changed files with 11 additions and 3 deletions
14
.github/workflows/update.yml
vendored
14
.github/workflows/update.yml
vendored
|
@ -56,6 +56,13 @@ jobs:
|
|||
build-full:
|
||||
needs: build-minimal
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
host:
|
||||
- othalan
|
||||
- algiz
|
||||
- mannaz
|
||||
- naudiz
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
@ -71,9 +78,10 @@ jobs:
|
|||
with:
|
||||
purge-packages: 'true'
|
||||
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
system_attr=$(nix run . -- output --host "othalan" --flake .)
|
||||
system_attr=$(nix run . -- output --host "${{ matrix.host }}" --flake .)
|
||||
nix run . \
|
||||
-- \
|
||||
build $system_attr \
|
||||
|
@ -88,7 +96,7 @@ jobs:
|
|||
|
||||
- name: Build Updated
|
||||
run: |
|
||||
system_attr=$(nix run . -- output --host "othalan" --flake .)
|
||||
system_attr=$(nix run . -- output --host "${{ matrix.host }}" --flake .)
|
||||
nix run . \
|
||||
-- \
|
||||
build $system_attr \
|
||||
|
@ -108,5 +116,5 @@ jobs:
|
|||
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: summary
|
||||
name: ${{ matrix.host }}-summary
|
||||
path: summary.md
|
||||
|
|
Loading…
Reference in a new issue