Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/coolprop/coolprop
Browse files Browse the repository at this point in the history
  • Loading branch information
ibell committed Mar 13, 2016
2 parents 0213bc5 + bf03ec2 commit 06f8041
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions dev/buildbot/master/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,25 @@ mn = mail.MailNotifier(fromaddr="buildbot@coolprop.dreamhosters.com",

c['status'].append(mn)


####### HOUSEKEEPING AND DISK SPACE

# By default, buildbot stores information on all previous builds and we
# hardly consult these data for debugging purposes - at least not the
# historical build logs. These settings help to save some disk space on
# worker (slave) machines and on the master.
# http://docs.buildbot.net/current/manual/cfg-global.html#data-lifetime
c['changeHorizon'] = 80 # Number of change records on master
c['buildHorizon'] = 40 # Number of builds for each builder which should be kept on disk
c['eventHorizon'] = 25 # Number of events to keep (mostly connections and disconnections of slaves)
c['logHorizon'] = 40 # Number of builds for which logs should be maintained
c['buildCacheSize'] = 10 # Number of builds for each builder which are cached in memory.
# This number should be larger than the number of builds required for commonly-used status
# displays (the waterfall or grid views), so that those displays do not miss the cache on a refresh.




####### BUILDSLAVES

# The 'slaves' list defines the set of recognized buildslaves. Each element is
Expand Down

0 comments on commit 06f8041

Please sign in to comment.