build all hosts at once

This commit is contained in:
Daylin Morgan 2024-07-10 12:56:37 -05:00
parent 10d1800f04
commit b01dfd1da0
Signed by: daylin
GPG key ID: 950D13E9719334AD

View file

@ -52,14 +52,12 @@ jobs:
- name: Build - name: Build
run: | run: |
for host in ${{ inputs.hosts }}; do
nix run . \ nix run . \
-- \ -- \
build --minimal \ build --minimal \
--host "$host" \ --host "${{ inputs.hosts }}" \
--flake . \ --flake . \
--verbose \ --verbose \
--debug \ --debug \
-- \ -- \
--print-build-logs --print-build-logs
done