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

refactor(fluid-build): Exclude build-tools release groups from fluid-build #12415

Closed

Conversation

tylerbutler
Copy link
Member

@tylerbutler tylerbutler commented Oct 12, 2022

The build-tools release group can cause problems with fluid-build's incremental support. As a short term mitigation, I've changed the --all argument to exclude a list of release groups (only build-tools right now) and added a --forceAll option that will really include everything in the repo.

I think this is a better approach to the problems described in #12400.

…build

The build-tools release group can cause problems with fluid-build's incremental support. As a short
term mitigation, I've changed the `--all` argument to exclude a list of release groups (only
build-tools right now) and added a `--forceAll` option that will _really_ include everything in the
repo.
@tylerbutler tylerbutler marked this pull request as ready for review October 12, 2022 01:00
@tylerbutler tylerbutler requested a review from a team as a code owner October 12, 2022 01:00
@github-actions github-actions bot added the base: main PRs targeted against main branch label Oct 12, 2022
Comment on lines +105 to +113
if (options.azure || options.all) {
monoReposToConsider.push(MonoRepoKind.Azure);
}
if (options.server || options.all) {
monoReposToConsider.push(MonoRepoKind.Server);
}
if ((!options.azure && !options.server) || options.all) {
monoReposToConsider.push(MonoRepoKind.Client);
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

options.all will always be false here, so it's redundant?

@ghost ghost added the status: stale label Dec 17, 2022
@ghost
Copy link

ghost commented Dec 17, 2022

This PR has been automatically marked as stale because it has had no activity for 60 days. It will be closed if no further activity occurs within 8 days of this comment. Thank you for your contributions to Fluid Framework!

@ghost ghost closed this Dec 25, 2022
@tylerbutler tylerbutler deleted the fluid-build/exclusions branch April 20, 2023 21:06
This pull request was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
base: main PRs targeted against main branch status: stale
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants