fix build command

This commit is contained in:
Andrei Yankovich 2022-01-21 16:46:14 +03:00
parent 74f56377aa
commit 18ab56dd0c
3 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@ class BuildBotWorkers(BuildBotModule):
worker.Worker("AndroidBuilder_v8Qt6", password),
worker.Worker("LinuxCMakeBuilder", password),
worker.Worker("LinuxCMakeBuilderQt6", password),
worker.Worker("iOSCMakeBuilder", password),
worker.Worker("IOSCMakeBuilder", password),
worker.Worker("WindowsCMakeBuilder", password),
worker.Worker("RepoGen", password),
worker.Worker("Wasm32Builder", password),

View File

@ -31,7 +31,7 @@ class CMake(Make):
def makeCommand(self, props):
cxx = []
if self.isiOS():
if self.isiOS(''):
cxx = ['-allowProvisioningUpdates']
return self.make(cxx)

View File

@ -56,7 +56,7 @@ bot.addBuilder("Wasm32Builder", wasm)
bot.addBuilder("DocsGenerator", docs)
bot.addBuilder("prodDeployer", release)
bot.addBuilder("iOSCMakeBuilder", release)
bot.addBuilder("IOSCMakeBuilder", release)
c = BuildmasterConfig = bot.getMaster()