-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
Creates maven profiles for integration tests #10763
Conversation
e0d87cf
to
3364f88
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me. It appears the build run fine too.
Needs rebasing though and verify that the build continues to work well after that.
d2e2da0
to
911267d
Compare
Needs rebasing again :\ |
@zakkak it needs another rebase :) |
@zakkak I like this approach. My only concern is if once we start using GIB (https://github.com/vackosar/gitflow-incremental-builder) this won't become a burden? @famod any thoughts? |
Well, I haven't tested GIB with this setup, but theoretically there shouldn't be a problem. |
@gastaldi I know it needs another rebase, but before investing time on it I would like to get some feedback (I guess you covered that part ) and hopefully a confirmation that this will get merged after the rebase so that it won't end up needing yet another rebase :) Now waiting for @famod 's OK as well :) |
I've tested this briefly with GIB and it works as expected! |
911267d
to
73867aa
Compare
Hi @gastaldi, this should now be up to date. |
73867aa
to
d67bd11
Compare
Allows running groups of test in CI builds with commands like: mvn -e -pl integration-tests -amd -PIT-Security1 verify mvn -e -pl integration-tests -amd -Dnative -PIT-Security1 verify mvn -e -pl integration-tests -amd -Dno-format -DskipDocs -Dnative -PIT-Security1 verify etc.
d67bd11
to
0569e82
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Any objections that may impact the next release @gsmet ?
Merged. Let's see how that goes. Thanks! |
Thanks @gastaldi |
The doc at the bottom of https://github.com/quarkusio/quarkus/blob/master/CONTRIBUTING.md#frequently-asked-questions needs an update. |
👍 Noted! |
Allows running groups of test in CI builds with commands like:
etc.