Skip to content

Commit 0e33b5e

Browse files
dongjoon-hyunHyukjinKwon
authored andcommitted
[SPARK-32178][TESTS] Disable test-dependencies.sh from Jenkins jobs
### What changes were proposed in this pull request? This PR aims to disable dependency tests(test-dependencies.sh) from Jenkins. ### Why are the changes needed? - First of all, GitHub Action provides the same test capability already and stabler. - Second, currently, `test-dependencies.sh` fails very frequently in AmpLab Jenkins environment. For example, in the following irrelevant PR, it fails 5 times during 6 hours. - #29001 ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Pass the Jenkins without `test-dependencies.sh` invocation. Closes #29004 from dongjoon-hyun/SPARK-32178. Authored-by: Dongjoon Hyun <dongjoon@apache.org> Signed-off-by: HyukjinKwon <gurwls223@apache.org>
1 parent 3726aab commit 0e33b5e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dev/run-tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ def main():
648648
# if "DOCS" in changed_modules and test_env == "amplab_jenkins":
649649
# build_spark_documentation()
650650

651-
if any(m.should_run_build_tests for m in test_modules):
651+
if any(m.should_run_build_tests for m in test_modules) and test_env != "amplab_jenkins":
652652
run_build_tests()
653653

654654
# spark build

0 commit comments

Comments
 (0)