-
Notifications
You must be signed in to change notification settings - Fork 117
Reduce pre-integration-test runtime #68
Reduce pre-integration-test runtime #68
Conversation
docker-minimal-bundle now only includes the core and sql modules of the Spark project. The Dockerfiles are still valid for the main distribution which includes all of the modules. A small bug was found on the way in using jars that are mounted on the docker image.
|
Build failure seems transient. |
|
@ssuchter this is the PR I mentioned that might make integration tests faster |
|
Yep, thanks Andrew. I mentioned your comment to Chai from our team who is
testing out the Travis<->integration test integration (heh) and he was
already way ahead of me and had seen this. :)
On February 1, 2017 at 11:09:32 AM, Andrew Ash ([email protected]) wrote:
@ssuchter <https://github.com/ssuchter> this is the PR I mentioned that
might make integration tests faster
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#68 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AB2E2_Hqzcg-GXd6GJqtbRRS8LY7QlDqks5rYNhkgaJpZM4LzQX_>
.
|
|
Note this isn't primarily for reducing docker image size - the removal of a few jars is negligible. This primarily focuses on removing compilation steps from the Maven flow, so running |
|
Thanks @mccheah, this will also help in reducing the integration test run time :). Also, I had had to apply this patch locally to get the tests working. I'll submit a PR with the travis changes I was trying out so we continue the discussion there on what to include. |
|
I'm not sure if the overall build time will reduce by a significant amount since the full build over all modules needs to run anyways. We could conceivably decide to make our Travis CI only run the |
|
Have created #74, PTAL. We can discuss further modifications to what we run with Travis there. |
|
This is unfortunately out of date and probably would be easier to revisit from the ground up later on. I'm going to close this but I'll revisit this in post-alpha. |
docker-minimal-bundle now only includes the core, kubernetes, and sql modules of the
Spark project. The Dockerfiles are still valid for the main distribution
which includes all of the modules.
A small bug was found and fixed on the way in using jars that are mounted on the
docker image.
Closes #66