-
Notifications
You must be signed in to change notification settings - Fork 242
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
Preparation for non-UTC nightly CI [skip ci] #9885
Preparation for non-UTC nightly CI [skip ci] #9885
Conversation
Signed-off-by: Chong Gao <[email protected]>
build |
@@ -321,6 +335,11 @@ if [[ "$TEST_MODE" == "DEFAULT" || "$TEST_MODE" == "PYARROW_ONLY" ]]; then | |||
run_pyarrow_tests | |||
fi | |||
|
|||
# Non-UTC time zone tests | |||
if [[ "$TEST_MODE" == "NON_UTC_TZ" ]]; then |
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.
please also add comment to explain the MODE in above TEST_MODE section thx
(killed previous trigger) also [skip ci] to save resources, nightly update would not be covered in pre-merge |
jenkins/spark-tests.sh
Outdated
# select one time zone according to date | ||
non_utc_time_zones=("Asia/Shanghai" "Iran") | ||
time_zones_length=${#non_utc_time_zones[@]} | ||
current_date=$(date +%Y%m%d) |
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.
nit: may use the date +%w
to get day of week, so schedule is fixed unlike depends on date YearMD number
build |
merge this one to setup pipeline in advance |
regular non-utc run should still wait for #9719 |
contributes to #9855
Preparation for non-UTC nightly CI
Select a non-UTC time zone according to day of week, then test.
Depending on #9719