1
0
Fork 0
selfhostblocks/.github/workflows/demo.yml

53 lines
1.1 KiB
YAML

name: Demo
on:
workflow_dispatch:
pull_request:
paths: &paths
- 'demo/**'
push:
branches:
- main
paths: *paths
jobs:
build:
strategy:
matrix:
demo:
- name: homeassistant
flake: basic
- name: homeassistant
flake: ldap
- name: nextcloud
flake: basic
- name: nextcloud
flake: ldap
- name: nextcloud
flake: sso
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install nix
uses: cachix/install-nix-action@v20
- uses: cachix/cachix-action@v14
with:
name: mycache
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Build ${{ matrix.demo.name }} .#${{ matrix.demo.flake }}
run: |
cd demo/${{ matrix.demo.name }}
nix \
--print-build-logs \
--option keep-going true \
--show-trace \
build .#nixosConfigurations.${{ matrix.demo.flake }}.config.system.build.vm