Skip to content

Commit 69f2c74

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

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

.buildkite/scripts/generate_support_matrices.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ declare -a default_feature_names=()
2020
# Parse Default Features File & Set Categories
2121
if [[ -f "${DEFAULT_FEATURES_FILE}" ]]; then
2222
mapfile -t raw_default_lines < <(sed 's/\r$//; /^$/d' "${DEFAULT_FEATURES_FILE}")
23-
2423
# Regex to capture "Feature Name (Category Name)"
2524
REGEX='^(.+) \((.+)\)$'
2625

@@ -30,7 +29,6 @@ if [[ -f "${DEFAULT_FEATURES_FILE}" ]]; then
3029
feature_name="${BASH_REMATCH[1]}"
3130
category="${BASH_REMATCH[2]}"
3231
default_feature_names+=("$feature_name")
33-
3432
# Set metadata so we know which CSV to put it in later
3533
echo "Setting category for '$feature_name': $category"
3634
buildkite-agent meta-data set "${feature_name}_category" "$category"

0 commit comments

Comments
 (0)