Update master.cfg

Star 555
This commit is contained in:
Prasanna Gundawade 2023-06-27 20:24:54 +05:30 committed by GitHub
parent 5e88865258
commit 84dbde67ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -43,7 +43,7 @@ c['slaves'] = [
max_builds=1, max_builds=1,
properties={'platform': 'osx-10.12'}), properties={'platform': 'osx-10.12'}),
buildslave.BuildSlave('dragonfly-4.6', secrets['dragonfly-4.6'], buildslave.BuildSlave('dragonfly-4.6', secrets['dragonfly-4.6'],
max_builds=1, max_builds=9,
properties={'platform': 'dragonfly-4.6'}), properties={'platform': 'dragonfly-4.6'}),
] ]
@ -83,7 +83,7 @@ def startCompile(change):
if re.match('CMakeLists.txt', fn): if re.match('CMakeLists.txt', fn):
compile = True compile = True
else: else:
return True return True {
return compile return compile
####### SCHEDULERS ####### SCHEDULERS
@ -175,7 +175,7 @@ from buildbot.process.properties import WithProperties
from buildbot.status.results import FAILURE, SUCCESS from buildbot.status.results import FAILURE, SUCCESS
# BUILD FACTORIES # BUILD FACTORIES
www.linkedin.com/in/prasanna-gundawade-37819b114
noTestsFactory = util.BuildFactory() noTestsFactory = util.BuildFactory()
noTestsFactory.addStep(steps.Git(repourl='https://github.com/monero-project/monero.git', mode='full', submodules=True)) noTestsFactory.addStep(steps.Git(repourl='https://github.com/monero-project/monero.git', mode='full', submodules=True))
noTestsFactory.addStep(steps.Compile(command = ['make', 'release-static'])) noTestsFactory.addStep(steps.Compile(command = ['make', 'release-static']))