From 483e976cccb5b894f98491c0ed157cb1527ea3c8 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 5 Jan 2022 14:15:36 +0530 Subject: [PATCH] Build linux arm64 in parallel as its the slowest by far --- setup/publish.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/publish.py b/setup/publish.py index 56bc50b720..f4059e3551 100644 --- a/setup/publish.py +++ b/setup/publish.py @@ -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'''