-
Notifications
You must be signed in to change notification settings - Fork 28.4k
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
[SPARK-10359][PROJECT-INFRA] Multiple fixes to dev/test-dependencies.sh script #10543
Conversation
Actually, it occurred to me that I should really be setting |
Test build #48561 has finished for PR 10543 at commit
|
The latest test run passed the build tests and I manually tested this on the AMP Jenkins workers, so I'm going to speculatively merge this and will re-test the failing PRs. If that doesn't work, I'll hotfix to disable this test pending real investigation. |
Test build #48562 has finished for PR 10543 at commit
|
…sh script This patch includes multiple fixes for the `dev/test-dependencies.sh` script (which was introduced in apache#10461): - Use `build/mvn --force` instead of `mvn` in one additional place. - Explicitly set a zero exit code on success. - Set `LC_ALL=C` to make `sort` results agree across machines (see https://stackoverflow.com/questions/28881/). - Set `should_run_build_tests=True` for `build` module (this somehow got lost). Author: Josh Rosen <[email protected]> Closes apache#10543 from JoshRosen/dep-script-fixes.
…sh script This patch includes multiple fixes for the `dev/test-dependencies.sh` script (which was introduced in apache#10461): - Use `build/mvn --force` instead of `mvn` in one additional place. - Explicitly set a zero exit code on success. - Set `LC_ALL=C` to make `sort` results agree across machines (see https://stackoverflow.com/questions/28881/). - Set `should_run_build_tests=True` for `build` module (this somehow got lost). Author: Josh Rosen <[email protected]> Closes apache#10543 from JoshRosen/dep-script-fixes.
This patch includes multiple fixes for the
dev/test-dependencies.sh
script (which was introduced in #10461):build/mvn --force
instead ofmvn
in one additional place.LC_ALL=C
to makesort
results agree across machines (see https://stackoverflow.com/questions/28881/).should_run_build_tests=True
forbuild
module (this somehow got lost).