mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-22 01:50:44 -06:00
modernize build ci
This commit is contained in:
parent
b851d4ae01
commit
9352e82219
1 changed files with 17 additions and 16 deletions
31
.github/workflows/build.yml
vendored
31
.github/workflows/build.yml
vendored
|
@ -16,7 +16,9 @@ on:
|
|||
inputs:
|
||||
hosts:
|
||||
description: 'list of hosts to build'
|
||||
default: ',othalan,algiz'
|
||||
default: 'othalan'
|
||||
# TODO: accept , style sep in hwylcli
|
||||
# default: ',othalan,algiz'
|
||||
type: string
|
||||
|
||||
# concurrency:
|
||||
|
@ -50,10 +52,10 @@ jobs:
|
|||
|
||||
- uses: DeterminateSystems/magic-nix-cache-action@v8
|
||||
|
||||
# - name: Install and login to attic cache
|
||||
# run: |
|
||||
# nix profile install "nixpkgs#attic-client"
|
||||
# attic login oizys https://attic.dayl.in "${{ secrets.ATTIC_TOKEN }}"
|
||||
- name: Install and login to attic cache
|
||||
run: |
|
||||
nix profile install "nixpkgs#attic-client"
|
||||
attic login oizys https://attic.dayl.in "${{ secrets.ATTIC_TOKEN }}"
|
||||
|
||||
# - uses: cachix/cachix-action@v15
|
||||
# with:
|
||||
|
@ -70,13 +72,12 @@ jobs:
|
|||
run: nix build . --print-build-logs
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
nix run . \
|
||||
-- \
|
||||
build --minimal \
|
||||
--host,="${{ inputs.hosts }}" \
|
||||
--flake . \
|
||||
--debug \
|
||||
-- \
|
||||
--keep-going \
|
||||
--print-build-logs
|
||||
run: >
|
||||
nix run .
|
||||
--
|
||||
cache
|
||||
--host "${{ inputs.hosts }}"
|
||||
--flake
|
||||
--debug
|
||||
--
|
||||
--keep-going
|
||||
|
|
Loading…
Reference in a new issue