Skip to content

Commit fc0bf2c

Browse files
committed
ci/run-spec: fix generate_variants exclusion
1 parent 95e3d25 commit fc0bf2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/ci_common/run-spec-impl.libsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ local std_get = (import "../../ci/ci_common/common-utils.libsonnet").std_get;
9595
else
9696
// exclusion
9797
assert std.length(excluded) == std.length(_values) : "Cannot mix inclusion with exclusion (either all entries start with '!' or none): " + _values;
98-
std.setDiff(std.objectFieldsAll(feature_map[self.feature]), excluded)
98+
std.setDiff(std.set(std.objectFieldsAll(feature_map[self.feature])), std.set(excluded))
9999
}
100100
;
101101
local is_feature_desc(key) = std.member(feature_order, get_feature_value_pair(key).feature);

0 commit comments

Comments
 (0)