Compare commits

..

No commits in common. "2c29a52d7416cfc94fc23561005aae50d0bfee67" and "2d56a8a28e1af9fbf5eba7926f25951df557f71c" have entirely different histories.

2 changed files with 0 additions and 61 deletions

View file

@ -1,14 +0,0 @@
---
skip_output: [meta, success]
no_tty: true
commit-msg:
commands:
lint:commitmsg:
run: cat {1} | convco check --from-stdin
pre-push:
parallel: false
commands:
check:nix:
tags: check
run: nix flake check

View file

@ -1,47 +0,0 @@
---
version: "3"
set: [errexit, pipefail, nounset]
shopt: [globstar]
tasks:
check:sh:
cmds:
- shellcheck **/*.sh
sources:
- "**/*.sh"
check:typos:
cmds:
- typos .
check:flake:
cmds:
- nix flake check
sources:
- "**/*.nix"
build:*:
silent: true
vars:
TARGET: "{{index .MATCH 0}}"
cmds:
- nixos-rebuild --flake .#{{.TARGET}} build
sources:
- "**/*.nix"
switch:*:
silent: true
vars:
TARGET: "{{index .MATCH 0}}"
requires:
vars: [TARGET]
cmds:
- doas nixos-rebuild --flake .#{{}} switch
sources:
- "**/*.nix"
test:*:
silent: true
vars:
TARGET: "{{index .MATCH 0}}"
cmds:
- doas nixos-rebuild --flake .#{{.TARGET}} test
sources:
- "**/*.nix"