Updated Workflow, Build Hosts instead Evaluation Configuration
Some checks failed
/ Builds HyperC (push) Failing after 1s
Some checks failed
/ Builds HyperC (push) Failing after 1s
This commit is contained in:
parent
1f3d10b40e
commit
c536168125
1 changed files with 20 additions and 8 deletions
28
.github/workflows/build.yml
vendored
28
.github/workflows/build.yml
vendored
|
@ -1,18 +1,30 @@
|
||||||
on: [push, pull_request, workflow_dispatch]
|
on: [push, pull_request, workflow_dispatch]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test-build:
|
build-HyperC:
|
||||||
runs-on: nixos
|
runs-on: nixos
|
||||||
name: "Check NixOS Configuration"
|
name: "Builds HyperC"
|
||||||
steps:
|
steps:
|
||||||
- name: "Git Clone"
|
- name: "Git Clone"
|
||||||
run: git clone https://git.kb-one.de/kb01/aux-config .
|
run: git clone https://git.kb-one.de/kb01/aux-config .
|
||||||
|
|
||||||
- name: "Check evaluation"
|
- name: "Nix Build"
|
||||||
run: nix flake check --no-build --all-systems --experimental-features 'nix-command flakes'
|
run: nix build --flake .#HyperC --no-link --no-update-lock-file --verbose
|
||||||
|
build-LoyAdjo:
|
||||||
|
runs-on: nixos
|
||||||
|
name: "Builds HyperC"
|
||||||
|
steps:
|
||||||
|
- name: "Git Clone"
|
||||||
|
run: git clone https://git.kb-one.de/kb01/aux-config .
|
||||||
|
|
||||||
- name: "Do linting"
|
- name: "Nix Build"
|
||||||
run: nix run nixpkgs#statix -- check . --experimental-features 'nix-command flakes'
|
run: nix build --flake .#LoyAdjo --no-link --no-update-lock-file --verbose
|
||||||
|
build-kb-games-01:
|
||||||
|
runs-on: nixos
|
||||||
|
name: "Builds HyperC"
|
||||||
|
steps:
|
||||||
|
- name: "Git Clone"
|
||||||
|
run: git clone https://git.kb-one.de/kb01/aux-config .
|
||||||
|
|
||||||
- name: "Check formatting"
|
- name: "Nix Build"
|
||||||
run: nix fmt -- --fail-on-change --experimental-features 'nix-command flakes'
|
run: nix build --flake .#kb-games-01 --no-link --no-update-lock-file --verbose
|
||||||
|
|
Loading…
Add table
Reference in a new issue