-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.config
73 lines (66 loc) · 1.58 KB
/
build.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# -*- python -*-
# ex: set syntax=python:
# The base URL for the repo
BASE_URL = 'https://github.com/mcallegari/qlcplus'
# Stub to add to the base URL to pull from
REPO_STUB = '.git'
# Stub to add to the base URL to get revision links
REVLINKSTUB = '/commit/%s'
# Title, 'project' is appended to the title.
TITLE = "QLC+"
# URL of the project
URL = "https://www.qlcplus.org/"
# URL of the buildbot
BUILDBOTURL = "https://qlcplusbuildbot.openlighting.org/"
# IRC server
IRCSERVER = "irc.freenode.org"
# IRC bot base name
IRCBOTBASENAME = "QLCplus-buildbot"
# Main IRC channel
# Bot IRC channel
# IRCBOTCHANNEL = "#qlcplus-build"
# The port the slaves connect to
SLAVE_PORT = 9990
# CPP_LINT_ARGS = ('--filter=-legal/copyright,-readability/streams,
# '-runtime/arrays')
# Todo, lint for JSDoc and add the strict option
# Possibly also run the closure compiler for any errors and warnings it throws
# out
# JS_LINT_ARGS = '--nojsdoc'
# The slaves, broken down by:
# 'platform': {
# 'arch': {
# [slave names],
# },
# }
# Slow slaves will merge requests, good for those that are struggling to keep up
SLAVES = {
'debian-wheezy': {
'armv7l': [
Slave('1'), # massimocallegari
],
},
'gentoo': {
'armv7l': [
Slave('noopenslp'), # kripton
],
},
'macos': {
'x86_64': [
Slave('1'), # Simon
],
},
'mint-rebecca': {
'x86_64': [
Slave('1'), # massimocallegari
],
},
'ubuntu-tahr': {
'i686': [
Slave('noopenslp', has_cpp_lint=True, has_tcmalloc=True), # Simon
],
}
}
# Logfiles to gather
LOGFILES = {
}