Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable report external impacts also for builds that don't contain any buildable files #533

Open
dennis-behm opened this issue Aug 27, 2024 · 0 comments · Fixed by #570
Open

Comments

@dennis-behm
Copy link
Member

Enable reporting of external impacts for builds that don't have any buildable files.

dbb-zappbuild/build.groovy

Lines 687 to 698 in f3dfad6

// Perform analysis and build report of external impacts
// Prereq: Metadatastore Connection
if (metadataStore && props.reportExternalImpacts && props.reportExternalImpacts.toBoolean()){
if (buildSet && changedFiles) {
println "** Perform analysis and reporting of external impacted files for the build list including changed files."
reportingUtils.reportExternalImpacts(buildSet.plus(changedFiles))
}
else if(buildSet) {
println "** Perform analysis and reporting of external impacted files for the build list."
reportingUtils.reportExternalImpacts(buildSet)
}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant