Initial commit
This commit is contained in:
commit
430194beda
109 changed files with 9066 additions and 0 deletions
24
.forgejo/workflows/build-hosts.yml
Normal file
24
.forgejo/workflows/build-hosts.yml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
name: Build hosts
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
build-hosts:
|
||||
runs-on: docker
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install Nix
|
||||
uses: cachix/install-nix-action@v27
|
||||
with:
|
||||
nix_path: nixpkgs=channel:nixos-unstable
|
||||
|
||||
- name: Build cryodev-main
|
||||
run: nix build .#nixosConfigurations.cryodev-main.config.system.build.toplevel --impure
|
||||
|
||||
- name: Build cryodev-pi
|
||||
run: nix build .#nixosConfigurations.cryodev-pi.config.system.build.toplevel --impure
|
||||
Loading…
Add table
Add a link
Reference in a new issue