Merge "Limit release config inheritance from aliases" into main

This commit is contained in:
LaMont Jones 2024-05-31 15:47:30 +00:00 committed by Gerrit Code Review
commit ff1d27d5b4

View file

@ -162,6 +162,9 @@ func (config *ReleaseConfig) GenerateReleaseConfig(configs *ReleaseConfigs) erro
if _, ok := myInheritsSet[inherit]; ok {
continue
}
if isBuildPrefix && configs.Aliases[inherit] != nil {
return fmt.Errorf("%s cannot inherit from alias %s", config.Name, inherit)
}
myInherits = append(myInherits, inherit)
myInheritsSet[inherit] = true
iConfig, err := configs.GetReleaseConfig(inherit)