Change already transitioned labels #114
Locked
plonter123
started this conversation in
General
Replies: 1 comment 5 replies
-
I looked a bit in the code and it looks that to fix this would be very easy but maybe I am missing something. At the What do you think about this solution? |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We use with_cfg in our project.
We have a lot of configurations and we wanted to create somekind of configuration system where we would run multiple transitions on our targets, each one getting more specific.
For example we would run on our targets
release
transition and later we would run aplatform
transition, and each would choose only the relevant labels. This way we could support less configurations because therelease
transition would be shared by all of the release configurations.Because each transition is more specific than the previous one we would've liked that later transitions could override previous transitions.
At the moment we tried to do this and received an error:
Another use case we have is a transition on a cc_binary. We have 2 transitions on cc_binary where the first one is a very long transitions which chooses a lot of configurations and the other is the same except 2 configurations, which one of them is the same as the previous one sets.
Do you think this is possible in anyway?
Beta Was this translation helpful? Give feedback.
All reactions