Skip to content

Commit f160095

Browse files
committed
cI: exclude incompatible test
1 parent 5156772 commit f160095

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ jobs:
2626
awesome,
2727
substitutions,
2828
]
29+
exclude:
30+
# In substitution example we use `string_keyed_label_dict`, which is not supported in bazel 7.0.0
31+
- bazel: 7.0.0
32+
subdir: substitutions
2933
runs-on: ${{ matrix.os }}
3034

3135
steps:

examples/substitutions/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ make_var_substitution = rule(
8383
)
8484
```
8585
86+
> [!IMPORTANT]
87+
> The `string_keyed_label_dict` attribute is not available in bazel 7.0.0.
88+
> As an alternative, you can use two lists, one for the keys (strings) and one for the values (labels).
89+
8690
Finally, the substitution rule can be used as a toolchain in the doxygen rule.
8791
8892
All configurations using the make variable syntax will be replaced with the values defined in the make_var_substitution rule.

0 commit comments

Comments
 (0)