-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Parallel build fails with invalid order of building #10859
Labels
area/housekeeping
Issue type for generalized tasks not related to bugs or enhancements
kind/bug
Something isn't working
Milestone
Comments
See also: ongoing discussion on zulip |
famod
added
the
area/housekeeping
Issue type for generalized tasks not related to bugs or enhancements
label
Jul 20, 2020
Not sure about the |
@michalszynkiewicz In case no objections are raised on zulip (or here): Do you want to introduce those |
@famod if you have time for it, I'd be grateful :) |
This was referenced Aug 3, 2020
9 tasks
gastaldi
pushed a commit
to gastaldi/quarkus
that referenced
this issue
Aug 26, 2020
Fixes quarkusio#10859 by enforcing a consistent build order. Presence of such minimal dependencies is enforced by the new RequiresMinimalDeploymentDependency rule.
gastaldi
pushed a commit
to gastaldi/quarkus
that referenced
this issue
Aug 26, 2020
Fixes quarkusio#10859 by enforcing a consistent build order. Presence of such minimal dependencies is enforced by the new RequiresMinimalDeploymentDependency rule.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area/housekeeping
Issue type for generalized tasks not related to bugs or enhancements
kind/bug
Something isn't working
Code Gen needs deployment modules of Quarkus extensions to be available during generate-sources phase of maven build of integration tests.
This dependency is not know to maven and a parallel build can fail with:
With skipped test, It doesn't happen with the usual quarkus-maven-plugin run because setting skipTests sets
quarkus.build.skip
to true.Setting
quarkus.prepare.skip
to true in this case would cause java compilation to fail, so we need to figure out another way to solve it.The text was updated successfully, but these errors were encountered: