mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-04 13:33:14 -06:00
go back to multi build strategy
This commit is contained in:
parent
27e0a80966
commit
d706f9be14
1 changed files with 13 additions and 11 deletions
24
.github/workflows/build.yml
vendored
24
.github/workflows/build.yml
vendored
|
@ -11,6 +11,8 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
- matrix: ["othalan", "mannaz", "algiz"]
|
||||||
steps:
|
steps:
|
||||||
# free up some space
|
# free up some space
|
||||||
- run: sudo rm -rf /opt&
|
- run: sudo rm -rf /opt&
|
||||||
|
@ -25,15 +27,15 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: daylin
|
name: daylin
|
||||||
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
|
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
|
||||||
- name: Build all flake outputs
|
# - name: Build all flake outputs
|
||||||
run: |
|
|
||||||
cachix watch-exec daylin -- \
|
|
||||||
nix build github:srid/devour-flake \
|
|
||||||
-L --no-link --print-out-paths \
|
|
||||||
--override-input flake .
|
|
||||||
# - name: Build
|
|
||||||
# run: |
|
# run: |
|
||||||
# for host in ${HOSTS[@]}
|
# cachix watch-exec daylin -- \
|
||||||
# do
|
# nix build github:srid/devour-flake \
|
||||||
# nix run ".#styx" --accept-flake-config -- cache --host:$host --flake:.
|
# -L --no-link --print-out-paths \
|
||||||
# done
|
# --override-input flake .
|
||||||
|
- name: Build
|
||||||
|
run: |
|
||||||
|
for host in ${HOSTS[@]}
|
||||||
|
do
|
||||||
|
nix run . --accept-flake-config -- cache --host $host --flake .
|
||||||
|
done
|
||||||
|
|
Loading…
Reference in a new issue