Closed Javagedes closed 1 month ago
All modified and coverable lines are covered by tests :white_check_mark:
Please upload report for BASE (
feature/sea@019bedb
). Learn more about missing BASE report.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Description
This change allows validation rules to only apply to certain build targets (DEBUG, RELEASE, NOOPT). By default, validation rules apply to all three, but a rule can be marked to only apply to a subset of them by adding a
target
field to the rule, which is a list of the supported targets.How This Was Tested
Validated that no change to a config continues to apply all rules.
Validated that filtering a rule to a specific build target results in that rule being skipped in the final aux.
Integration Instructions
Add a
target = ['debug']
,target = ['release']
ortarget = ['noop']
or any combination there-of to any [[rule]] entry.