We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5fd179 commit 69f2c74Copy full SHA for 69f2c74
.buildkite/scripts/generate_support_matrices.sh
@@ -20,7 +20,6 @@ declare -a default_feature_names=()
20
# Parse Default Features File & Set Categories
21
if [[ -f "${DEFAULT_FEATURES_FILE}" ]]; then
22
mapfile -t raw_default_lines < <(sed 's/\r$//; /^$/d' "${DEFAULT_FEATURES_FILE}")
23
-
24
# Regex to capture "Feature Name (Category Name)"
25
REGEX='^(.+) \((.+)\)$'
26
@@ -30,7 +29,6 @@ if [[ -f "${DEFAULT_FEATURES_FILE}" ]]; then
30
29
feature_name="${BASH_REMATCH[1]}"
31
category="${BASH_REMATCH[2]}"
32
default_feature_names+=("$feature_name")
33
34
# Set metadata so we know which CSV to put it in later
35
echo "Setting category for '$feature_name': $category"
36
buildkite-agent meta-data set "${feature_name}_category" "$category"
0 commit comments