customize

This commit is contained in:
AF 2023-08-04 17:19:27 +00:00
parent 9186e0f0ac
commit 0fd8ec9aeb
3 changed files with 8 additions and 8 deletions

View File

@ -39,11 +39,11 @@ c['protocols'] = {'pb': {'port': os.environ.get("BUILDBOT_WORKER_PORT", 9989)}}
####### CHANGESOURCES
# the 'change_source' setting tells the buildmaster how it should find out
# about source code changes. Here we point to the buildbot clone of pyflakes.
# about source code changes. Here we point to the buildbot clone of radn.
c['change_source'] = []
c['change_source'].append(changes.GitPoller(
'git://github.com/buildbot/pyflakes.git',
'git://https://gitea.parrrate.ru/PTV/radn-rs.git',
workdir='gitpoller-workdir', branch='master',
pollinterval=300))
@ -70,9 +70,9 @@ c['schedulers'].append(schedulers.ForceScheduler(
factory = util.BuildFactory()
# check out the source
factory.addStep(steps.Git(repourl='http://github.com/buildbot/pyflakes.git', mode='incremental'))
factory.addStep(steps.Git(repourl='https://gitea.parrrate.ru/PTV/radn-rs.git', mode='incremental'))
# run the tests (note that this will require that 'trial' is installed)
factory.addStep(steps.ShellCommand(command=["trial", "pyflakes"]))
factory.addStep(steps.ShellCommand(command=["cargo", "test"]))
c['builders'] = []
c['builders'].append(
@ -93,8 +93,8 @@ c['services'] = []
# the 'title' string will appear at the top of this buildbot installation's
# home pages (linked to the 'titleURL').
c['title'] = "Pyflakes"
c['titleURL'] = "https://launchpad.net/pyflakes"
c['title'] = "RADN"
c['titleURL'] = "https://gitea.parrrate.ru/PTV/radn-rs"
# the 'buildbotURL' string should point to the location where the buildbot's
# internal web server is visible. This typically uses the port number set in

View File

@ -19,7 +19,7 @@ services:
env_file: db.env
environment:
- BUILDBOT_CONFIG_DIR=config
- BUILDBOT_CONFIG_URL=https://github.com/buildbot/buildbot-docker-example-config/archive/master.tar.gz
- BUILDBOT_CONFIG_URL=https://gitea.parrrate.ru/PTV/buildabot/archive/master.tar.gz
- BUILDBOT_WORKER_PORT=9989
- BUILDBOT_WEB_URL=http://localhost:8080/
- BUILDBOT_WEB_PORT=8080

View File

@ -8,7 +8,7 @@ services:
- BUILDBOT_CONFIG_DIR=config
- BUILDBOT_CONFIG_URL=https://gitea.parrrate.ru/PTV/buildabot/archive/master.tar.gz
- BUILDBOT_WORKER_PORT=9989
- BUILDBOT_WEB_URL=http://localhost:8010/
- BUILDBOT_WEB_URL=http://192.168.1.3:8010/
- BUILDBOT_WEB_PORT=tcp:port=8010
links:
- db