update on-demand definition

This commit is contained in:
Daylin Morgan 2024-05-23 13:13:04 -05:00
parent fe4730b82c
commit 85ed8b7f78
Signed by: daylin
GPG Key ID: 950D13E9719334AD
3 changed files with 19 additions and 7 deletions

View File

@ -14,7 +14,10 @@ jobs:
strategy:
max-parallel: 1
matrix:
host: ["othalan", "mannaz", "algiz"]
host:
- othalan
# - mannaz
# - algiz
steps:
# free up some space
- run: sudo rm -rf /opt&

View File

@ -10,11 +10,19 @@ on:
type: string
lockFile:
description: 'flake.lock file'
required: true
type: string
workflow_call:
inputs:
host:
description: 'host name to build'
required: true
default: 'othalan'
type: string
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}-${{ inputs.host }}
cancel-in-progress: true
jobs:
@ -23,10 +31,9 @@ jobs:
steps:
# free up some space
- run: sudo rm -rf /opt&
- uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@v2
- uses: cachix/cachix-action@v14
@ -35,11 +42,11 @@ jobs:
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
- name: write lock file
if: "${{ inputs.lockFile != '' }}"
run: |
echo '${{ inputs.lockFile }}' > flake.lock
git diff
- name: Build
run: |
nix run . --accept-flake-config -- cache --host "${{ inputs.host }}" --flake .

View File

@ -12,4 +12,6 @@
- [ ] find out why pixi on GHA is different from local (possibly from the fetch git step?)
- [ ] rework CI so it's not building all systems on every pull
<!-- generated with <3 by daylinmorgan/todo -->