oizys/.github/workflows/build.yml

66 lines
1.5 KiB
YAML
Raw Normal View History

2024-05-23 13:27:08 -05:00
name: Build NixOS (on demand)
2024-01-23 16:09:05 -06:00
2024-11-18 11:36:35 -06:00
# TODO: accept , style sep in hwylcli
2024-01-23 11:51:13 -06:00
on:
2024-05-23 13:27:08 -05:00
workflow_dispatch:
inputs:
2024-06-20 11:17:27 -05:00
hosts:
2024-06-14 15:02:01 -05:00
description: 'list of hosts to build'
2024-05-23 13:27:08 -05:00
required: true
2024-11-18 14:14:26 -06:00
default: ',othalan,algiz'
2024-05-23 13:27:08 -05:00
type: string
lockFile:
description: 'flake.lock file'
type: string
workflow_call:
inputs:
2024-06-20 11:17:27 -05:00
hosts:
2024-06-14 15:02:01 -05:00
description: 'list of hosts to build'
2024-11-18 14:14:26 -06:00
default: ',othalan,algiz'
2024-05-23 13:27:08 -05:00
type: string
2024-06-20 11:17:27 -05:00
# concurrency:
# group: ${{ github.workflow }}-${{ github.ref }}-${{ inputs.host }}
# cancel-in-progress: true
2024-01-23 11:51:13 -06:00
jobs:
build:
runs-on: ubuntu-latest
steps:
2024-06-14 12:17:39 -05:00
- name: Checkout
uses: actions/checkout@v4
2024-06-14 12:17:39 -05:00
2024-11-04 12:27:17 -06:00
# needed to access ghostty repo for now
- name: Setup SSH
uses: MrSquaare/ssh-setup-action@v3
with:
host: github.com
private-key: ${{ secrets.SSH_PRIVATE_KEY }}
2024-11-18 12:05:43 -06:00
- uses: ./.github/actions/nix
2024-11-18 12:10:46 -06:00
with:
attic_token: ${{ secrets.ATTIC_TOKEN }}
2024-11-19 14:35:29 -06:00
# clean: true
2024-11-18 12:47:05 -06:00
btrfs: true
2024-11-18 11:18:32 -06:00
2024-05-23 13:27:08 -05:00
- name: write lock file
if: "${{ inputs.lockFile != '' }}"
run: |
echo '${{ inputs.lockFile }}' > flake.lock
git diff
2024-08-07 13:07:38 -05:00
- name: Pre-build Oizys
2024-09-04 11:57:20 -05:00
run: nix build . --print-build-logs
2024-08-07 13:07:38 -05:00
2024-01-30 13:40:15 -06:00
- name: Build
2024-11-18 11:18:32 -06:00
run: >
nix run .
--
cache
2024-11-18 14:14:26 -06:00
--host,="${{ inputs.hosts }}"
2024-11-18 11:36:35 -06:00
--flake .
2024-11-18 11:18:32 -06:00
--debug
--
--keep-going