Local run does nothing?
With a trivial cirrus file
example_task:
container:
image: debian
bar_step:
- echo bar
Running cirrus run does nothing:
$ ~/Downloads/cirrus-linux-amd64 run
$ ~/Downloads/cirrus-linux-amd64 --version
cirrus version 0.88.0-b1743e6
I've tried scrubbing both docker and ~/.cache/cirrus and I'm not sure what's causing this behavior.
oh, and neither --verbose nor -o simple give any information.
Also removed /tmp/cirrus-*, /tmp/cli-*, /tmp/scripts*.sh and the numbered directories. No effect.
Best as I can determine from strace (wow golang strace is hard to read), it exits nearly immediately after stat-ing or creating (depending on the run) ~/.cache/cirrus/projects/test.
You've probably meant bar_script, not bar_step:
example_task:
container:
image: debian
bar_script:
- echo bar
don't mind the thudding noise, that's just my head introducing itself to my desk.