split CI jobs
This commit is contained in:
parent
33fae657c9
commit
9128300e03
3 changed files with 70 additions and 62 deletions
44
.github/workflows/demo.yml
vendored
Normal file
44
.github/workflows/demo.yml
vendored
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
name: "Demo"
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
branches: [ "main" ]
|
||||||
|
jobs:
|
||||||
|
# We're just checking if the demo start without hiccup.
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
demo:
|
||||||
|
- homeassistant#basic
|
||||||
|
- homeassistant#ldap
|
||||||
|
- nextcloud#basic
|
||||||
|
- nextcloud#ldap
|
||||||
|
- nextcloud#sso
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Install Nix
|
||||||
|
uses: DeterminateSystems/nix-installer-action@main
|
||||||
|
with:
|
||||||
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
extra-conf: "system-features = nixos-test benchmark big-parallel kvm"
|
||||||
|
- name: Setup Caching
|
||||||
|
uses: cachix/cachix-action@v14
|
||||||
|
with:
|
||||||
|
name: selfhostblocks
|
||||||
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
|
- name: Test demos
|
||||||
|
# See https://blog.stefan-koch.name/2020/12/10/qemu-guest-graceful-shutdown-from-python for
|
||||||
|
# inspiration.
|
||||||
|
run: |
|
||||||
|
set -x
|
||||||
|
|
||||||
|
rm -f nixos.qcow2
|
||||||
|
nix run nixpkgs#nixos-rebuild -- build-vm --flake ./demo/${{ matrix.demo }}
|
||||||
|
QEMU_NET_OPTS="hostfwd=tcp::8080-:80" ./result/bin/run-nixos-vm -nographic -qmp unix:/tmp/qmp-sock,server,nowait &
|
||||||
|
|
||||||
|
nix run nixpkgs#socat -- - unix-connect:/tmp/qmp-sock <<EOF
|
||||||
|
{"execute": "qmp_capabilities"}
|
||||||
|
{"execute": "system_powerdown"}
|
||||||
|
EOF
|
26
.github/workflows/docs.yml
vendored
Normal file
26
.github/workflows/docs.yml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
name: "Documentation"
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
jobs:
|
||||||
|
gen:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Install Nix
|
||||||
|
uses: DeterminateSystems/nix-installer-action@main
|
||||||
|
with:
|
||||||
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
extra-conf: "system-features = nixos-test benchmark big-parallel kvm"
|
||||||
|
- name: Setup Caching
|
||||||
|
uses: cachix/cachix-action@v14
|
||||||
|
with:
|
||||||
|
name: selfhostblocks
|
||||||
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
|
- name: Test building docs
|
||||||
|
run: |
|
||||||
|
nix \
|
||||||
|
--print-build-logs \
|
||||||
|
--option keep-going true \
|
||||||
|
--show-trace \
|
||||||
|
build .#manualHtml
|
62
.github/workflows/test.yml
vendored
62
.github/workflows/test.yml
vendored
|
@ -24,65 +24,3 @@ jobs:
|
||||||
nix run github:Mic92/nix-fast-build -- \
|
nix run github:Mic92/nix-fast-build -- \
|
||||||
--skip-cached --no-nom \
|
--skip-cached --no-nom \
|
||||||
--flake ".#checks.$(nix eval --raw --impure --expr builtins.currentSystem)"
|
--flake ".#checks.$(nix eval --raw --impure --expr builtins.currentSystem)"
|
||||||
|
|
||||||
# We're just checking if the demo start without hiccup.
|
|
||||||
demos:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
demo:
|
|
||||||
- homeassistant#basic
|
|
||||||
- homeassistant#ldap
|
|
||||||
- nextcloud#basic
|
|
||||||
- nextcloud#ldap
|
|
||||||
- nextcloud#sso
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Install Nix
|
|
||||||
uses: DeterminateSystems/nix-installer-action@main
|
|
||||||
with:
|
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
extra-conf: "system-features = nixos-test benchmark big-parallel kvm"
|
|
||||||
- name: Setup Caching
|
|
||||||
uses: cachix/cachix-action@v14
|
|
||||||
with:
|
|
||||||
name: selfhostblocks
|
|
||||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
||||||
- name: Test demos
|
|
||||||
# See https://blog.stefan-koch.name/2020/12/10/qemu-guest-graceful-shutdown-from-python for
|
|
||||||
# inspiration.
|
|
||||||
run: |
|
|
||||||
set -x
|
|
||||||
|
|
||||||
rm -f nixos.qcow2
|
|
||||||
nix run nixpkgs#nixos-rebuild -- build-vm --flake ./demo/${{ matrix.demo }}
|
|
||||||
QEMU_NET_OPTS="hostfwd=tcp::8080-:80" ./result/bin/run-nixos-vm -nographic -qmp unix:/tmp/qmp-sock,server,nowait &
|
|
||||||
|
|
||||||
nix run nixpkgs#socat -- - unix-connect:/tmp/qmp-sock <<EOF
|
|
||||||
{"execute": "qmp_capabilities"}
|
|
||||||
{"execute": "system_powerdown"}
|
|
||||||
EOF
|
|
||||||
|
|
||||||
docs:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Install Nix
|
|
||||||
uses: DeterminateSystems/nix-installer-action@main
|
|
||||||
with:
|
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
extra-conf: "system-features = nixos-test benchmark big-parallel kvm"
|
|
||||||
- name: Setup Caching
|
|
||||||
uses: cachix/cachix-action@v14
|
|
||||||
with:
|
|
||||||
name: selfhostblocks
|
|
||||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
||||||
- name: Test building docs
|
|
||||||
run: |
|
|
||||||
nix \
|
|
||||||
--print-build-logs \
|
|
||||||
--option keep-going true \
|
|
||||||
--show-trace \
|
|
||||||
build .#manualHtml
|
|
||||||
|
|
Loading…
Reference in a new issue