augray
augray
removed "good first issue" just because I figure anything involving a DB migration might not be ideal for somebody's first issue! We can add it back if you disagree.
This will be kind of tricky to do: currently there is an assumption that if there are any failed/canceled runs in the pipeline, the whole pipeline should be failed. Fixing...
Example `status` from pod yaml for a pod that can't be scheduled: ``` status: conditions: - lastProbeTime: null lastTransitionTime: "2022-10-13T22:53:47Z" message: '0/3 nodes are available: 3 Insufficient cpu.' reason: Unschedulable...
You could make `argument_command` a list called `invocation_argument_commands`: ```python multirun( name = "bar", commands = [ "cmd_1", "cmd_2", "cmd_3", ], # when doing `bazel run //foo:bar -- --some --arguments` #...
FWIW, my use case is that I want to run a command for pushing a docker image and then execute a script that uses that pushed image. The script is...