1
0
Fork 0

temporary disable windows step

This commit is contained in:
Mikhail Goncharov 2020-09-28 08:38:19 +00:00
parent 24336ae2e4
commit e4e63d9947

View file

@ -110,9 +110,10 @@ if __name__ == '__main__':
if os.getenv('ph_skip_linux') is None:
steps.append(linux_buld_step)
deps.append(linux_buld_step['key'])
if os.getenv('ph_skip_windows') is None:
steps.append(windows_buld_step)
deps.append(windows_buld_step['key'])
# TODO: temporary disable windows step
# if os.getenv('ph_skip_windows') is None:
# steps.append(windows_buld_step)
# deps.append(windows_buld_step['key'])
report_step = {
'label': ':spiral_note_pad: report',
'depends_on': deps,