Build linux arm64 in parallel as its the slowest by far

This commit is contained in:
Kovid Goyal 2022-01-05 14:15:36 +05:30
parent 29505f1951
commit 483e976ccc
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -40,7 +40,7 @@ class Stage2(Command):
self.info('Starting builds for all platforms, this will take a while...')
session = ['layout vertical']
platforms = 'linux', 'osx', 'win'
platforms = 'linux64', 'linuxarm64', 'osx', 'win'
for x in platforms:
cmd = (
'''{exe} -c "import subprocess; subprocess.Popen(['{exe}', './setup.py', '{x}']).wait() != 0 and'''