Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
540d6da
Test on jenkins
wangyum Aug 14, 2019
6821aa5
Temporary way for testing JDK 11 on jenkins
wangyum Aug 14, 2019
e6508c0
Try to manually copy environment variables from the parent in run-tes…
HyukjinKwon Aug 14, 2019
2ebdcb9
Revert "Temporary way for testing JDK 11 on jenkins" (#23)
HyukjinKwon Aug 14, 2019
0085ad7
Try shell=True with explicit environment variables (#24)
HyukjinKwon Aug 14, 2019
1c1143f
Revert "Try shell=True with explicit environment variables (#24)"
HyukjinKwon Aug 14, 2019
8435110
Revert " Revert "Temporary way for testing JDK 11 on jenkins" (#23)"
HyukjinKwon Aug 14, 2019
77a70ae
Revert "Try to manually copy environment variables from the parent in…
HyukjinKwon Aug 14, 2019
6fdf309
Check if we need to set PATH for JDK11
wangyum Aug 14, 2019
b984414
Add JAVA_HOME into PATH as well
HyukjinKwon Aug 14, 2019
593a154
fix
wangyum Aug 14, 2019
8b04e78
Revert "fix"
wangyum Aug 14, 2019
59554f9
set java.version to 11
wangyum Aug 14, 2019
17285a6
Update
wangyum Aug 14, 2019
9254dfb
Fix: unresolved dependency: org.apache.hive#hive-metastore;2.3.6: not…
wangyum Aug 15, 2019
0ac0b30
Revert java.version to 1.8
wangyum Aug 15, 2019
500b4a7
Merge remote-tracking branch 'upstream/master' into test-on-jenkins
wangyum Aug 16, 2019
0caa93f
Update deps
wangyum Aug 16, 2019
24bb028
Update deps2
wangyum Aug 16, 2019
46322df
Test SPARK-28765 on JDK 11
wangyum Aug 17, 2019
3856828
Merge remote-tracking branch 'upstream/master' into test-on-jenkins
wangyum Aug 18, 2019
9defec2
Test Hive 2.3.6 on JDK 8
wangyum Aug 18, 2019
a9cbd7f
Merge remote-tracking branch 'upstream/master' into test-on-jenkins
wangyum Aug 22, 2019
ff4783c
Hive 2.3.6 vote passes
wangyum Aug 22, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Try to manually copy environment variables from the parent in run-tes…
…ts-jenkins.py (#22)
  • Loading branch information
HyukjinKwon authored Aug 14, 2019
commit e6508c03854833b3c80e81d918aad5289171ba32
3 changes: 2 additions & 1 deletion dev/run-tests-jenkins.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ def run_tests(tests_timeout):

test_result_code = subprocess.Popen(['timeout',
tests_timeout,
os.path.join(SPARK_HOME, 'dev', 'run-tests')]).wait()
os.path.join(SPARK_HOME, 'dev', 'run-tests')],
env=dict(os.environ)).wait()

failure_note_by_errcode = {
# error to denote run-tests script failures:
Expand Down