As per title, what is the default TimeZone in AppVeyor?
I've tried asking Google about it... nothing found
I don't think you should rely on time zone currently set on build workers, but you should configure your own required time zone. It could be easily done with tzutil
utility, for example in appveyor.yml
:
init:
- tzutil /s "Mountain Standard Time"
You can list all available zones with tzutil /l
command.