Skip to content
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

Drone CI - Add time zone argument to the test matrix #11761

Merged
merged 2 commits into from
Jan 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 6 additions & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,14 @@ matrix:
- { TARGET: test, CONSTEL: misc }
- { TARGET: test, CONSTEL: ui }
- { TARGET: test, CONSTEL: ui.editors }
- { TARGET: test, CONSTEL: ui.editors, TZ: 'Etc/GMT+8' }
- { TARGET: test, CONSTEL: ui.editors, TZ: 'Etc/GMT-9' }
- { TARGET: test, CONSTEL: ui.editors, TZ: 'Etc/GMT-10' }
- { TARGET: test, CONSTEL: ui.grid }
- { TARGET: test, CONSTEL: ui.scheduler }
- { TARGET: test, CONSTEL: ui.scheduler, TZ: 'Etc/GMT+8' }
- { TARGET: test, CONSTEL: ui.scheduler, TZ: 'Etc/GMT-9' }
- { TARGET: test, CONSTEL: ui.scheduler, TZ: 'Etc/GMT-10' }
- { TARGET: test, CONSTEL: viz }
- { TARGET: test, PERF: true, JQUERY: true, NO_HEADLESS: true }
- { TARGET: test, MOBILE_UA: ios9, CONSTEL: ui }
Expand Down
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,14 @@ env:
- TARGET=test CONSTEL=misc
- TARGET=test CONSTEL=ui
- TARGET=test CONSTEL=ui.editors
- TARGET=test CONSTEL=ui.editors TZ='Etc/GMT+8'
- TARGET=test CONSTEL=ui.editors TZ='Etc/GMT-9'
- TARGET=test CONSTEL=ui.editors TZ='Etc/GMT-10'
- TARGET=test CONSTEL=ui.grid
- TARGET=test CONSTEL=ui.scheduler
- TARGET=test CONSTEL=ui.scheduler TZ='Etc/GMT+8'
- TARGET=test CONSTEL=ui.scheduler TZ='Etc/GMT-9'
- TARGET=test CONSTEL=ui.scheduler TZ='Etc/GMT-10'
- TARGET=test CONSTEL=viz
- TARGET=test PERF=true JQUERY=true NO_HEADLESS=true
- TARGET=test MOBILE_UA=ios9 CONSTEL=ui
Expand Down
5 changes: 5 additions & 0 deletions docker-ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ function run_test {
[ -z "$JQUERY" ] && url="$url&nojquery=true"
[ -n "$PERF" ] && url="$url&include=DevExpress.performance&workerInWindow=true"

if [ -n "$TZ" ]; then
echo "Time-Zone: $TZ"
date
fi

if [ "$NO_HEADLESS" == "true" ]; then
Xvfb :99 -ac -screen 0 1200x600x24 &
x11vnc -display :99 2>/dev/null &
Expand Down
6 changes: 6 additions & 0 deletions shippable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,14 @@ env:
- TARGET=test CONSTEL=misc
- TARGET=test CONSTEL=ui
- TARGET=test CONSTEL=ui.editors
- TARGET=test CONSTEL=ui.editors TZ='Etc/GMT+8'
- TARGET=test CONSTEL=ui.editors TZ='Etc/GMT-9'
- TARGET=test CONSTEL=ui.editors TZ='Etc/GMT-10'
- TARGET=test CONSTEL=ui.grid
- TARGET=test CONSTEL=ui.scheduler
- TARGET=test CONSTEL=ui.scheduler TZ='Etc/GMT+8'
- TARGET=test CONSTEL=ui.scheduler TZ='Etc/GMT-9'
- TARGET=test CONSTEL=ui.scheduler TZ='Etc/GMT-10'
- TARGET=test CONSTEL=viz
- TARGET=test PERF=true JQUERY=true NO_HEADLESS=true
- TARGET=test MOBILE_UA=ios9 CONSTEL=ui
Expand Down