disable win build on master too
This commit is contained in:
parent
7d2a6967f8
commit
8bd8cdbdd1
2 changed files with 4 additions and 3 deletions
|
@ -110,7 +110,7 @@ if __name__ == '__main__':
|
|||
if os.getenv('ph_skip_linux') is None:
|
||||
steps.append(linux_buld_step)
|
||||
deps.append(linux_buld_step['key'])
|
||||
# TODO: temporary disable windows step
|
||||
# TODO: windows builds are temporary disabled #243
|
||||
# if os.getenv('ph_skip_windows') is None:
|
||||
# steps.append(windows_buld_step)
|
||||
# deps.append(windows_buld_step['key'])
|
||||
|
|
|
@ -105,8 +105,9 @@ if __name__ == '__main__':
|
|||
}
|
||||
if os.getenv('ph_skip_linux') is None:
|
||||
steps.append(linux_buld_step)
|
||||
if os.getenv('ph_skip_windows') is None:
|
||||
steps.append(windows_buld_step)
|
||||
# TODO: windows builds are temporary disabled #243
|
||||
# if os.getenv('ph_skip_windows') is None:
|
||||
# steps.append(windows_buld_step)
|
||||
notify = []
|
||||
for e in notify_emails:
|
||||
notify.append({'email': e})
|
||||
|
|
Loading…
Reference in a new issue