#! /usr/bin/env sh fmt_check() { echo ".#checks.x86_64-linux.$1" } check() { tests="$(fmt_check "$1")" shift 1 for test in "$@"; do tests="$tests $(fmt_check "$test")" done set -x # We want to expand `$tests`. # shellcheck disable=SC2086 nix build \ --option max-jobs 1 \ --print-out-paths --no-link \ $tests } check atuin-sync \ back \ deploy-activate \ deploy-schema \ dns \ formatting \ git-server \ rocie \ rust-motd \ sharkey \ sharkey-cpu \ taskchampion-sync # email-dns \ # email-http \ # email-ip \