Commit 6048817
Eric Bower
·
2026-05-08 10:29:20 -0400 EDT
parent ffb6d10
chore: cleanup
M
main.go
+0,
-4
1@@ -1112,10 +1112,6 @@ func monitorTick(cfg *Cfg, log *slog.Logger, output io.Writer, jobStates map[str
2 }
3 }
4
5- // d. Sync artifacts once per tick
6- if cfg.HumanOutput {
7- fmt.Fprint(output, " 📦 syncing artifacts...\n") //nolint:errcheck
8- }
9 if err := syncArtifacts(cfg, log); err != nil {
10 log.Error("sync artifacts", "err", err)
11 }
M
run.fish
+2,
-1
1@@ -5,9 +5,10 @@
2 # Usage: ./run.fish
3
4 while true
5+ echo "waiting for build.event ..."
6 set event (ssh pipe sub build.event 2>/dev/null)
7 if test -n "$event"
8- echo "$event" | pici runner
9+ echo "$event" | pici runner --wait
10 else
11 echo "could not connect to pipe, waiting 5s..."
12 sleep 5