-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
ci: Add utility to generate the feature "powerset" list #454
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
spencewenski
added
powerset_check
Run the `feature_powerset` workflow when added to a PR.
and removed
powerset_check
Run the `feature_powerset` workflow when added to a PR.
labels
Oct 19, 2024
spencewenski
added
powerset_check
Run the `feature_powerset` workflow when added to a PR.
and removed
powerset_check
Run the `feature_powerset` workflow when added to a PR.
labels
Oct 19, 2024
spencewenski
force-pushed
the
powerset-optimizations
branch
from
October 19, 2024 22:25
1ca48fc
to
a7ce914
Compare
spencewenski
changed the title
Powerset optimizations
ci: Add utility to generate the feature "powerset" list
Oct 19, 2024
spencewenski
added
powerset_check
Run the `feature_powerset` workflow when added to a PR.
and removed
powerset_check
Run the `feature_powerset` workflow when added to a PR.
labels
Oct 19, 2024
spencewenski
force-pushed
the
powerset-optimizations
branch
from
October 19, 2024 23:02
a7ce914
to
6c784bd
Compare
spencewenski
added
powerset_check
Run the `feature_powerset` workflow when added to a PR.
and removed
powerset_check
Run the `feature_powerset` workflow when added to a PR.
labels
Oct 19, 2024
spencewenski
force-pushed
the
powerset-optimizations
branch
from
October 19, 2024 23:04
6c784bd
to
2a9a681
Compare
spencewenski
added
powerset_check
Run the `feature_powerset` workflow when added to a PR.
and removed
powerset_check
Run the `feature_powerset` workflow when added to a PR.
labels
Oct 19, 2024
spencewenski
force-pushed
the
powerset-optimizations
branch
from
October 19, 2024 23:07
2a9a681
to
a23a7f9
Compare
spencewenski
added
powerset_check
Run the `feature_powerset` workflow when added to a PR.
and removed
powerset_check
Run the `feature_powerset` workflow when added to a PR.
labels
Oct 19, 2024
spencewenski
force-pushed
the
powerset-optimizations
branch
from
October 19, 2024 23:15
a23a7f9
to
06340bc
Compare
spencewenski
added
powerset_check
Run the `feature_powerset` workflow when added to a PR.
and removed
powerset_check
Run the `feature_powerset` workflow when added to a PR.
labels
Oct 19, 2024
The list isn't technically a powerset because we limit the "depth". We're doing this instead of using `cargo hack` because `cargo hack` does not allow splitting the tasks across different workflow runners via e.g. a matrix. This PR also updates the `feature_powerset.yml` workflow to use our custom powerset script.
spencewenski
force-pushed
the
powerset-optimizations
branch
from
October 19, 2024 23:17
06340bc
to
c114b7d
Compare
spencewenski
added
powerset_check
Run the `feature_powerset` workflow when added to a PR.
and removed
powerset_check
Run the `feature_powerset` workflow when added to a PR.
labels
Oct 19, 2024
This was referenced Oct 20, 2024
Closed
Merged
spencewenski
added a commit
that referenced
this pull request
Oct 21, 2024
## 🤖 New release * `roadster`: 0.6.13 -> 0.6.14 (✓ API compatible changes) <details><summary><i><b>Changelog</b></i></summary><p> <blockquote> ## [0.6.14](roadster-v0.6.13...roadster-v0.6.14) - 2024-10-21 ### Added - Add `AnyMiddleware` to minimize boilerplate for Axum middleware ([#472](#472)) ### Other - A couple minor fixes for the loco comparison ([#471](#471)) - Update book favicon color ([#469](#469)) - Update Roadster features index.md ([#467](#467)) - Update links in getting started index ([#466](#466)) - Add leptos-0.7 example ([#465](#465)) - Update doc test log group name in feature powerset workflow ([#464](#464)) - Add links to relevant docs.rs links in book chapters ([#463](#463)) - Add Leptos comparison ([#462](#462)) - Add utility to generate the feature "powerset" list ([#454](#454)) - Update openapi features in loco comparison ([#452](#452)) </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/MarcoIeni/release-plz/). --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Spencer Ferris <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The list isn't technically a powerset because we limit the "depth".
We're doing this instead of using
cargo hack
becausecargo hack
doesnot allow splitting the tasks across different workflow runners via e.g.
a matrix.
This PR also updates the
feature_powerset.yml
workflow to use ourcustom powerset script.