You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
---
version: 4
shared:
image: node:20
annotations:
screwdriver.cd/cpu: LOW
screwdriver.cd/ram: LOW
parameters:
CUSTOM_VERSION: "v.0.0.1"
fail: "fail"
annotations:
screwdriver.cd/chainPR: true
jobs:
meta-set:
requires: [~pr, ~commit]
steps:
- meta-before-set: |
set -x
meta get img_version
- set-meta: |
set -x
meta set img_version "$(meta get parameters.CUSTOM_VERSION.value)"
meta-middleware:
requires: [meta-set]
steps:
- decision: |
set -x
fail_value=$(meta get parameters.fail.value)
if [ "$fail_value" = "fail" ]; then
exit 1
else
echo "img_version: $(meta get img_version)"
fi
meta-final:
requires: [meta-set, meta-middleware]
steps:
- success: |
echo "success"
echo "img_version: $(meta get img_version)"
The workflow graph rendered looks very confusing.
What you expected to happen:
the line between meta-middleware node to meta-final should be clearly shown that it is leaving from one node to another, right now it does not connect properly, node to node.
What happened:
With the config below:
The workflow graph rendered looks very confusing.
What you expected to happen:
the line between
meta-middleware
node tometa-final
should be clearly shown that it is leaving from one node to another, right now it does not connect properly, node to node.How to reproduce it:
Please use this sd config to reproduce.
The text was updated successfully, but these errors were encountered: