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 95e3d25 commit fc0bf2cCopy full SHA for fc0bf2c
ci/ci_common/run-spec-impl.libsonnet
@@ -95,7 +95,7 @@ local std_get = (import "../../ci/ci_common/common-utils.libsonnet").std_get;
95
else
96
// exclusion
97
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)
+ std.setDiff(std.set(std.objectFieldsAll(feature_map[self.feature])), std.set(excluded))
99
}
100
;
101
local is_feature_desc(key) = std.member(feature_order, get_feature_value_pair(key).feature);
0 commit comments