File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ process_models() {
6363 local result
6464 result=$( buildkite-agent meta-data get " ${model} :${stage} " --default " N/A" )
6565 row=" $row ,$result "
66- if [ " ${result} " != " ✅" ] && [ " ${result} " != " N/A" ] ; then
66+ if [ " ${result} " != " ✅" ] && [ " ${result} " != " N/A" ] && [ " ${result} " != " 🚧 " ] ; then
6767 ANY_FAILED=true
6868 fi
6969 done
@@ -101,7 +101,7 @@ process_features() {
101101 result=$( buildkite-agent meta-data get " ${feature} :${stage} " --default " N/A" )
102102 fi
103103 row=" $row ,$result "
104- if [ " ${result} " != " ✅" ] && [ " ${result} " != " N/A" ] ; then
104+ if [ " ${result} " != " ✅" ] && [ " ${result} " != " N/A" ] && [ " ${result} " != " 🚧 " ] ; then
105105 ANY_FAILED=true
106106 fi
107107 done
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ STEP_KEY="$1"
1010
1111echo " --- Checking ${STEP_KEY} Outcome"
1212
13- # Try to get the custom string you saved (e.g., "to be added")
13+ # Try to get the custom string you saved
1414CUSTOM_STATUS=$( buildkite-agent meta-data get " ${STEP_KEY} " --default " " )
1515
1616if [ -n " $CUSTOM_STATUS " ]; then
1919 OUTCOME=$( buildkite-agent step get " outcome" --step " ${STEP_KEY} " || echo " skipped" )
2020fi
2121
22- echo " --- Checking ${STEP_KEY} Outcome"
23-
24- OUTCOME=$( buildkite-agent step get " outcome" --step " ${STEP_KEY} " || echo " skipped" )
2522echo " Step ${STEP_KEY} outcome: ${OUTCOME} "
2623message=" "
2724
You can’t perform that action at this time.
0 commit comments