Skip to content

Commit 934f78c

Browse files
committed
Separate model and feature support matrices by category (#1100)
Signed-off-by: Teresa Chen <boe20211@gmail.com>
1 parent 4fdf36a commit 934f78c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.buildkite/scripts/generate_support_matrices.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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" ] && [ "${result}" != "🚧" ]; then
66+
if [ "${result}" != "" ] && [ "${result}" != "N/A" ] && [ "${result}" != "to be added" ]; 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" ] && [ "${result}" != "🚧" ]; then
104+
if [ "${result}" != "" ] && [ "${result}" != "N/A" ] && [ "${result}" != "to be added" ]; then
105105
ANY_FAILED=true
106106
fi
107107
done

.buildkite/scripts/record_step_result.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ case $OUTCOME in
3030
message="N/A"
3131
;;
3232
"to be added")
33-
message="🚧"
33+
message="to be added"
3434
;;
3535
*)
3636
message=""

0 commit comments

Comments
 (0)