Shutdown macOS build VM after building
This commit is contained in:
parent
1958d67847
commit
63d7b2a80b
10
publish.py
10
publish.py
@ -75,11 +75,11 @@ def run_build(args: Any) -> None:
|
|||||||
call(cmd, echo=True)
|
call(cmd, echo=True)
|
||||||
|
|
||||||
for x in ('64', '32', 'arm64'):
|
for x in ('64', '32', 'arm64'):
|
||||||
cmd = f'python ../bypy linux --arch {x} program'
|
prefix = f'python ../bypy linux --arch {x} '
|
||||||
run_with_retry(cmd)
|
run_with_retry(prefix + 'program')
|
||||||
call(f'python ../bypy linux --arch {x} shutdown', echo=True)
|
call(prefix + 'shutdown', echo=True)
|
||||||
cmd = 'python ../bypy macos program --sign-installers --notarize'
|
run_with_retry('python ../bypy macos program --sign-installers --notarize')
|
||||||
run_with_retry(cmd)
|
call('python ../bypy macos shutdown', echo=True)
|
||||||
call('./setup.py build-static-binaries')
|
call('./setup.py build-static-binaries')
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user