feat: workflow save to cache
runner nix smoke / nix label and flake smoke (push) Failing after 8s

This commit is contained in:
2026-09-09 15:05:34 +00:00
parent 906e56a78a
commit 6dc2391b13
10 changed files with 939 additions and 3 deletions
+22
View File
@@ -0,0 +1,22 @@
#!/bin/dash
set -eu
fail() {
printf '%s\n' "FAIL: $*" >&2
exit 1
}
pass() {
printf '%s\n' "PASS: $*" >&2
}
assert_file_contains() {
label=$1
file=$2
pattern=$3
grep -q "$pattern" "$file" || fail "$label: missing $pattern in $file"
pass "$label"
}
# shellcheck disable=SC1091,SC2154
. "$test/run.sh"