master-cfg/config/change_sources.py

39 lines
1.6 KiB
Python
Raw Normal View History

2019-09-06 16:49:06 +02:00
from buildbot.plugins import changes
cs_test_c = changes.GitPoller(project='test.c',
repourl='https://git.blackfinn.de/tkl/test.c.git',
branches=True, pollInterval=300)
## gpio_ftdi
2019-11-22 10:59:53 +01:00
#cs_gpio_ftdi = changes.GitPoller(project='gpio_ftdi',
# repourl='https://git.blackfinn.de/adc_gpio_i2c/gpio_ftdi.git',
# branches=True, pollInterval=60)
2019-09-06 16:49:06 +02:00
## gpio_sys
2019-11-22 10:59:53 +01:00
#cs_gpio_sys = changes.GitPoller(project='gpio_sys',
# repourl='https://git.blackfinn.de/adc_gpio_i2c/gpio_sys.git',
# branches=True, pollInterval=60)
2019-09-06 16:49:06 +02:00
## i2c_bb
2019-11-22 10:59:53 +01:00
#cs_i2c_bb = changes.GitPoller(project='i2c_bb',
# repourl='https://git.blackfinn.de/adc_gpio_i2c/i2c_bb.git',
# branches=True, pollInterval=60)
2019-09-06 16:49:06 +02:00
## ads1115
2019-11-22 10:59:53 +01:00
#cs_ads1115 = changes.GitPoller(project='ads1115',
# repourl='https://git.blackfinn.de/adc_gpio_i2c/ads1115.git',
# branches=True, pollInterval=60)
2019-09-06 16:49:06 +02:00
## voltage_app
2019-11-22 10:59:53 +01:00
#cs_voltage_app = changes.GitPoller(project='voltage_app',
# repourl='https://git.blackfinn.de/adc_gpio_i2c/voltage_app.git',
# branches=True, pollInterval=60)
2019-09-06 16:49:06 +02:00
def append(change_sources):
change_sources.append(cs_test_c)
2019-11-22 10:59:53 +01:00
# change_sources.append(cs_gpio_ftdi)
# change_sources.append(cs_gpio_sys)
# change_sources.append(cs_i2c_bb)
# change_sources.append(cs_ads1115)
# change_sources.append(cs_voltage_app)
2019-09-06 16:49:06 +02:00
return change_sources