mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-04 21:43:15 -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:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
- matrix: ["othalan", "mannaz", "algiz"]
|
||||
steps:
|
||||
# free up some space
|
||||
- run: sudo rm -rf /opt&
|
||||
|
@ -25,15 +27,15 @@ jobs:
|
|||
with:
|
||||
name: daylin
|
||||
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
|
||||
- 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
|
||||
# - name: Build all flake outputs
|
||||
# run: |
|
||||
# for host in ${HOSTS[@]}
|
||||
# do
|
||||
# nix run ".#styx" --accept-flake-config -- cache --host:$host --flake:.
|
||||
# done
|
||||
# cachix watch-exec daylin -- \
|
||||
# nix build github:srid/devour-flake \
|
||||
# -L --no-link --print-out-paths \
|
||||
# --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