2009-07-23 21:38:19 +02:00
|
|
|
###############
|
|
|
|
# General Setup
|
|
|
|
###############
|
|
|
|
c = BuildmasterConfig = {}
|
|
|
|
|
|
|
|
# Import our passwords
|
|
|
|
passwd_file = open('passwd.py')
|
|
|
|
exec passwd_file
|
|
|
|
passwd_file.close()
|
|
|
|
|
|
|
|
# What port to listen on, used for try attempts as well.
|
|
|
|
c['slavePortnum'] = 9899
|
|
|
|
|
|
|
|
c['projectName'] = "Aegisub"
|
|
|
|
c['projectURL'] = "http://devel.aegisub.org/"
|
|
|
|
c['buildbotURL'] = "http://buildbot.aegisub.org/"
|
|
|
|
|
|
|
|
# Used for accepting wchange notifications (svn-commit-hook) _and_ try attempts.
|
|
|
|
from buildbot.changes.pb import PBChangeSource
|
|
|
|
c['change_source'] = PBChangeSource()
|
|
|
|
|
|
|
|
####################################
|
|
|
|
# Check if a file is worth a rebuild
|
|
|
|
####################################
|
|
|
|
|
|
|
|
re_common = [
|
|
|
|
'^trunk/aegisub/.*\.c$',
|
|
|
|
'^trunk/aegisub/.*\.cpp$',
|
|
|
|
'^trunk/aegisub/.*\.h$',
|
|
|
|
'^trunk/aegisub/FFmpegSource2/.*',
|
|
|
|
'^trunk/aegisub/src/include/aegisub/.*',
|
|
|
|
'^trunk/aegisub/src/boost/.*',
|
|
|
|
'^trunk/aegisub/src/bitmaps/.*',
|
|
|
|
'^trunk/aegisub/src/config/.*',
|
|
|
|
'^trunk/aegisub/universalchardet/.*',
|
|
|
|
'^trunk/aegisub/src/gl/.*',
|
|
|
|
]
|
|
|
|
|
|
|
|
re_common_unix = [
|
|
|
|
'^trunk/aegisub/configure.in$',
|
|
|
|
'^trunk/aegisub/libass/.*',
|
|
|
|
'^trunk/aegisub/.*Makefile.am$',
|
|
|
|
'^trunk/aegisub/m4macros/.*',
|
|
|
|
'^trunk/aegisub/scripts/unix-.*',
|
|
|
|
'^trunk/aegisub/src/libresrc/.*',
|
|
|
|
'^trunk/aegisub/po/.*',
|
|
|
|
'^trunk/aegisub/acinclude.m4$',
|
|
|
|
'^trunk/aegisub/desktop/.*'
|
|
|
|
]
|
|
|
|
|
|
|
|
re_osx = [
|
|
|
|
'^trunk/aegisub/src/libosxutil/.*',
|
|
|
|
'^trunk/aegisub/packages/osx_.*',
|
|
|
|
'^trunk/aegisub/scripts/osx-.*'
|
|
|
|
]
|
|
|
|
|
|
|
|
re_windows = [
|
|
|
|
'^trunk/aegisub/build/.*',
|
|
|
|
'^trunk/contrib/csri/.*',
|
|
|
|
'^trunk/contrib/lua51/.*',
|
|
|
|
'^trunk/contrib/hunspell/.*',
|
|
|
|
'^trunk/aegisub/packages/win_installer/.*',
|
|
|
|
'^trunk/aegisub/tinderbox/windows/.*',
|
|
|
|
'^trunk/aegisub/src/msvc/.*'
|
|
|
|
]
|
|
|
|
|
2009-07-30 01:29:00 +02:00
|
|
|
re_doxygen = [
|
|
|
|
'^trunk/aegisub/docs/doxygen/.*',
|
|
|
|
'^trunk/aegisub/src/.*\.c$',
|
|
|
|
'^trunk/aegisub/src/.*\.cpp$',
|
|
|
|
'^trunk/aegisub/src/.*\.h$',
|
|
|
|
'^trunk/aegisub/src/libosxutil/.*\.h$',
|
|
|
|
'^trunk/aegisub/src/libosxutil/.*\.c$',
|
|
|
|
'^trunk/aegisub/src/include/aegisub/.*'
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2009-07-23 21:38:19 +02:00
|
|
|
import re, string
|
|
|
|
def check_changes(files, re_array):
|
|
|
|
re_compiled = re.compile(string.joinfields(re_array, "|"), re.I)
|
|
|
|
for changed_file in files:
|
|
|
|
if re.match(re_compiled, changed_file):
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
def interested_windows(change):
|
|
|
|
return check_changes(change.files, re_common + re_windows)
|
|
|
|
|
|
|
|
def interested_unix(change):
|
|
|
|
return check_changes(change.files, re_common + re_common_unix)
|
|
|
|
|
|
|
|
def interested_osx(change):
|
|
|
|
return check_changes(change.files, re_common + re_common_unix + re_osx)
|
|
|
|
|
2009-07-30 01:29:00 +02:00
|
|
|
def interested_doxygen(change):
|
|
|
|
return check_changes(change.files, re_doxygen)
|
|
|
|
|
2009-07-23 21:38:19 +02:00
|
|
|
|
|
|
|
|
|
|
|
#############
|
|
|
|
# BUILDSLAVES
|
|
|
|
#############
|
|
|
|
|
|
|
|
from buildbot.buildslave import BuildSlave
|
|
|
|
c['slaves'] = [
|
|
|
|
BuildSlave("mochi", passwd['mochi'], max_builds=1, properties={'os':'Debian', 'version':'5.0.1', 'osname':'Lenny'}),
|
|
|
|
BuildSlave("kokoro", passwd['kokoro'], max_builds=1, properties={'os':'OSX', 'version':'10.5.6', 'osname':'Leopard'}),
|
|
|
|
BuildSlave("anpan", passwd['anpan'], max_builds=1, properties={'os':'Windows', 'version':'SP2', 'osname':'Vista'}),
|
|
|
|
BuildSlave("tako", passwd['tako'], max_builds=1, properties={'os':'FreeBSD', 'version':'7.1', 'osname':'Stable'}),
|
|
|
|
BuildSlave("nori", passwd['nori'], max_builds=1, properties={'os':'Ubuntu', 'version':'9.04', 'osname':'Jaunty'}),
|
2009-07-30 01:29:00 +02:00
|
|
|
BuildSlave("mokona", passwd['mokona'], max_builds=1, properties={'os':'OSX', 'version': '10.4.11', 'osname':'Tiger'}),
|
|
|
|
BuildSlave("shoyu", passwd['shoyu'], max_builds=2, properties={'os':'Linux', 'version': '???', 'osname':'???'})
|
2009-07-23 21:38:19 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
###########
|
|
|
|
# FACTORIES
|
|
|
|
###########
|
|
|
|
|
|
|
|
from buildbot.steps import source, shell
|
|
|
|
from buildbot.steps.shell import Configure, Compile, WithProperties
|
|
|
|
from buildbot.process import factory
|
|
|
|
from buildbot import locks
|
|
|
|
from agi_upload import agi_upload
|
|
|
|
from OOCompile import OOCompile
|
|
|
|
|
|
|
|
# General settings
|
|
|
|
source_unix = "http://svn.aegisub.org/trunk/aegisub/"
|
|
|
|
source_windows = "http://svn.aegisub.org/branches/windows"
|
|
|
|
stub = factory.BuildFactory()
|
|
|
|
|
|
|
|
|
|
|
|
##############
|
|
|
|
# Factory
|
|
|
|
# General Unix
|
|
|
|
##############
|
|
|
|
flinux = factory.BuildFactory()
|
|
|
|
flinux.addStep(source.SVN(mode="clobber", svnurl=source_unix))
|
|
|
|
|
|
|
|
flinux.addStep(shell.ShellCommand(
|
|
|
|
command=["./autogen.sh", "--skip-configure"],
|
2009-07-24 00:56:04 +02:00
|
|
|
env={
|
|
|
|
'ACLOCAL_FLAGS': '-I /home/verm/build/wx/share/aclocal'
|
2009-07-26 18:40:04 +02:00
|
|
|
},
|
2009-07-23 21:38:19 +02:00
|
|
|
name = "autogen",
|
|
|
|
description = ["autogening"],
|
|
|
|
descriptionDone = ["autogen"],
|
|
|
|
haltOnFailure=True
|
|
|
|
))
|
|
|
|
|
|
|
|
flinux.addStep(shell.ShellCommand(
|
|
|
|
command=["./configure",
|
|
|
|
WithProperties("--with-build-credit=BuildBot: %s (%s)", "buildername", "slavename"),
|
|
|
|
"--disable-check-wx-stc",
|
2009-07-24 00:56:04 +02:00
|
|
|
"--disable-check-wx-opengl",
|
|
|
|
"--with-wx-config=/home/verm/build/wx/lib/wx/config/gtk2-unicode-debug-2.9"
|
2009-07-23 21:38:19 +02:00
|
|
|
],
|
|
|
|
env={
|
|
|
|
'CC': '/usr/lib/ccache/gcc',
|
|
|
|
'CXX': '/usr/lib/ccache/g++',
|
2009-07-26 19:22:27 +02:00
|
|
|
'LDFLAGS': '-Wl,-rpath=/home/verm/build/wx/lib',
|
2009-07-23 21:38:19 +02:00
|
|
|
'CCACHE_PATH': '/usr/bin',
|
|
|
|
'CCACHE_DIR': '/home/verm/.ccache',
|
|
|
|
'LUA_CFLAGS': '-I/usr/include/lua5.1',
|
2009-07-23 22:40:36 +02:00
|
|
|
'LUA_LDFLAGS': '-llua5.1'
|
2009-07-23 21:38:19 +02:00
|
|
|
},
|
|
|
|
name = "configure",
|
|
|
|
description = ["configuring"],
|
|
|
|
descriptionDone = ["configure"],
|
|
|
|
logfiles={
|
|
|
|
'config.log': 'config.log',
|
|
|
|
'config.status': 'config.status'
|
|
|
|
},
|
|
|
|
haltOnFailure=True
|
|
|
|
))
|
|
|
|
|
|
|
|
flinux.addStep(OOCompile(
|
|
|
|
command=["make"],
|
|
|
|
env={
|
|
|
|
'CCACHE_PATH': '/usr/bin',
|
|
|
|
'CCACHE_DIR': '/home/verm/.ccache'
|
|
|
|
},
|
|
|
|
name = "build",
|
|
|
|
description = ["building"],
|
|
|
|
descriptionDone = ["build"],
|
|
|
|
haltOnFailure=True
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
|
|
#########
|
|
|
|
# Factory
|
|
|
|
# FreeBSD
|
|
|
|
#########
|
|
|
|
ffbsd = factory.BuildFactory()
|
|
|
|
ffbsd.addStep(source.SVN(mode="clobber", svnurl=source_unix))
|
|
|
|
|
|
|
|
ffbsd.addStep(shell.ShellCommand(
|
|
|
|
name = "autogen",
|
|
|
|
description = "autogening",
|
|
|
|
descriptionDone = "autogen",
|
|
|
|
haltOnFailure=True,
|
|
|
|
|
|
|
|
command=["./autogen.sh", "--skip-configure"],
|
|
|
|
env={
|
2009-07-24 09:55:56 +02:00
|
|
|
'ACLOCAL_FLAGS': '-I /usr/local/share/aclocal -I /usr/home/verm/build/wx/share/aclocal',
|
2009-07-23 21:38:19 +02:00
|
|
|
'ACLOCAL': 'aclocal-1.9',
|
|
|
|
'AUTOCONF': 'autoconf-2.62',
|
|
|
|
'AUTOHEADER': 'autoheader-2.62',
|
|
|
|
'AUTOMAKE': 'automake-1.9',
|
|
|
|
'LIBTOOLIZE': 'libtoolize'
|
|
|
|
}
|
|
|
|
))
|
|
|
|
|
|
|
|
ffbsd.addStep(shell.ShellCommand(
|
|
|
|
command=["/usr/local/bin/bash", "./configure",
|
|
|
|
"--prefix=/usr/local",
|
|
|
|
WithProperties("--with-build-credit=BuildBot: %s (%s)", "buildername", "slavename"),
|
2009-07-24 09:55:56 +02:00
|
|
|
"--with-wx-config=/usr/home/verm/build/wx/lib/wx/config/gtk2-unicode-debug-2.9",
|
2009-07-23 21:38:19 +02:00
|
|
|
"--enable-maintainer-mode",
|
|
|
|
"--disable-check-wx-opengl",
|
|
|
|
"--disable-check-wx-stc"
|
|
|
|
],
|
|
|
|
env={
|
|
|
|
'CCACHE_PATH': '/usr/bin:/usr/local/bin',
|
|
|
|
'CCACHE_DIR': '/usr/home/verm/.ccache',
|
|
|
|
'CC': '/usr/local/libexec/ccache/gcc',
|
|
|
|
'CXX': '/usr/local/libexec/ccache/g++',
|
|
|
|
'CFLAGS': '-I/usr/local/include',
|
|
|
|
'CXXFLAGS': '-I/usr/local/include',
|
2009-07-26 18:46:50 +02:00
|
|
|
'LDFLAGS': '-L/usr/local/lib -rpath /usr/home/verm/build/wx/lib',
|
2009-07-23 21:38:19 +02:00
|
|
|
'LUA_CFLAGS': '-I/usr/local/include/lua51',
|
|
|
|
'LUA_LDFLAGS': '-L/usr/local/lib -llua-5.1'
|
|
|
|
},
|
|
|
|
name = "configure",
|
|
|
|
description = ["configuring"],
|
|
|
|
descriptionDone = ["configure"],
|
|
|
|
logfiles={
|
|
|
|
'config.log': 'config.log',
|
|
|
|
'config.status': 'config.status'
|
|
|
|
},
|
|
|
|
haltOnFailure=True
|
|
|
|
))
|
|
|
|
|
|
|
|
ffbsd.addStep(OOCompile(
|
|
|
|
command=["gmake"],
|
|
|
|
name = "build",
|
|
|
|
description = ["building"],
|
|
|
|
descriptionDone = ["build"],
|
|
|
|
env={
|
|
|
|
'CCACHE_PATH': '/usr/bin:/usr/local/bin',
|
|
|
|
'CCACHE_DIR': '/usr/home/verm/.ccache'
|
|
|
|
},
|
|
|
|
haltOnFailure=True
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
|
|
###############
|
|
|
|
# Factory
|
|
|
|
# Unix Snapshot
|
|
|
|
###############
|
|
|
|
|
|
|
|
funix_dist = factory.BuildFactory()
|
|
|
|
funix_dist.addStep(source.SVN(mode="clobber", svnurl=source_unix))
|
|
|
|
funix_dist.addStep(shell.ShellCommand(
|
|
|
|
name = "dist",
|
|
|
|
description = "disting",
|
|
|
|
descriptionDone = "dist",
|
|
|
|
command=[
|
|
|
|
"sh",
|
|
|
|
"-x",
|
|
|
|
"tinderbox/unix/dist.sh",
|
|
|
|
WithProperties("%s", "got_revision"),
|
|
|
|
WithProperties("%s", "slavename"),
|
|
|
|
],
|
|
|
|
haltOnFailure=True
|
|
|
|
))
|
|
|
|
|
|
|
|
funix_dist.addStep(agi_upload(
|
|
|
|
blocksize=640*1024,
|
|
|
|
slavesrc="dist.tar.bz2",
|
|
|
|
mode=0644,
|
|
|
|
masterdest=WithProperties("tinderbox/snapshot/aegisub-snap-r%s.tar.bz2", "got_revision")),
|
|
|
|
name = "upload",
|
|
|
|
description = ["uploading"],
|
|
|
|
descriptionDone = ["uploaded"],
|
|
|
|
haltOnFailure=False,
|
|
|
|
flunkOnFailure=False
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
############
|
|
|
|
# Factory
|
|
|
|
# OS X Intel
|
|
|
|
############
|
|
|
|
|
|
|
|
fosx = factory.BuildFactory()
|
|
|
|
fosx.addStep(source.SVN(mode="clobber", svnurl=source_unix))
|
|
|
|
|
|
|
|
fosx.addStep(shell.ShellCommand(
|
|
|
|
name = "autogen",
|
|
|
|
description = "autogening",
|
|
|
|
descriptionDone = "autogen",
|
|
|
|
haltOnFailure=True,
|
|
|
|
command=["./autogen.sh", "--skip-configure"],
|
|
|
|
env={
|
|
|
|
'ACLOCAL_FLAGS': '-I /Users/verm/prefix/share/aclocal -I /Developer/usr/share/aclocal -I /opt/local/share/aclocal',
|
|
|
|
'AUTOMAKE': '/Users/verm/prefix/bin/automake-1.9',
|
|
|
|
'ACLOCAL': '/Users/verm/prefix/bin/aclocal-1.9',
|
|
|
|
'AUTOCONF': '/Users/verm/prefix/bin/autoconf',
|
|
|
|
'AUTOHEADER': '/Users/verm/prefix/bin/autoheader',
|
|
|
|
'BIN_CONVERT': '/Users/verm/prefix/bin/convert'
|
|
|
|
}
|
|
|
|
))
|
|
|
|
|
|
|
|
fosx.addStep(shell.ShellCommand(
|
|
|
|
command=["./configure",
|
|
|
|
"--prefix=/Users/verm/prefix",
|
|
|
|
WithProperties("--with-build-credit=BuildBot: %s (%s)", "buildername", "slavename"),
|
|
|
|
"--with-apple-opengl-framework",
|
2009-07-26 19:22:27 +02:00
|
|
|
"--with-wx-config=/Users/verm/prefix/lib/wx/config/osx_carbon-unicode-debug-2.9",
|
2009-07-23 21:38:19 +02:00
|
|
|
"--enable-debug",
|
|
|
|
"--disable-check-wx-opengl",
|
|
|
|
"--disable-check-wx-stc"
|
|
|
|
],
|
|
|
|
env={
|
|
|
|
'CCACHE_PATH': '/usr/bin',
|
|
|
|
'CCACHE_DIR': '/Users/verm/.ccache',
|
|
|
|
'CC': '/opt/local/libexec/ccache/gcc',
|
|
|
|
'CXX': '/opt/local/libexec/ccache/g++',
|
|
|
|
'PKG_CONFIG': '/Users/verm/prefix/bin/pkg-config',
|
|
|
|
'PKG_CONFIG_PATH': '/Users/verm/prefix/lib/pkgconfig',
|
|
|
|
'CXXFLAGS': '-I/Users/verm/prefix/include',
|
|
|
|
'LDFLAGS': '-L/Users/verm/prefix/lib',
|
|
|
|
'LUA_CFLAGS': '-I/Users/verm/prefix/include/lua51',
|
|
|
|
'LUA_LDFLAGS': '-L/Users/verm/prefix/lib/lua51 -llua',
|
|
|
|
'OPENAL_CFLAGS': '-framework OpenAL',
|
|
|
|
'OPENAL_LIBS': '-framework OpenAL',
|
|
|
|
'CFLAGS': '-I/Developer/SDKs/MacOSX10.5.sdk/usr/include',
|
|
|
|
'ICONV_LDFLAGS': '/usr/lib/libiconv.dylib',
|
|
|
|
},
|
|
|
|
name = "configure",
|
|
|
|
description = ["configuring"],
|
|
|
|
descriptionDone = ["configure"],
|
|
|
|
logfiles={
|
|
|
|
'config.log': 'config.log',
|
|
|
|
'config.status': 'config.status'
|
|
|
|
},
|
|
|
|
haltOnFailure=True
|
|
|
|
))
|
|
|
|
|
|
|
|
fosx.addStep(OOCompile(
|
|
|
|
command=["make"],
|
|
|
|
name = "build",
|
|
|
|
description = ["building"],
|
|
|
|
descriptionDone = ["build"],
|
|
|
|
env={
|
|
|
|
'CCACHE_PATH': '/usr/bin',
|
|
|
|
'CCACHE_DIR': '/Users/verm/.ccache'
|
|
|
|
},
|
|
|
|
haltOnFailure=True
|
|
|
|
))
|
|
|
|
|
|
|
|
fosx.addStep(shell.ShellCommand(
|
|
|
|
command=["make", "osx-tinderbox-bundle"],
|
|
|
|
env={
|
|
|
|
'T_BUNDLE': WithProperties("aegisub-%s-%s-%s-r%s", "buildername", "slavename", "buildnumber", "got_revision"),
|
|
|
|
},
|
|
|
|
name = "bundle",
|
|
|
|
description = ["bundling"],
|
|
|
|
descriptionDone = ["bundle"],
|
|
|
|
haltOnFailure=True
|
|
|
|
))
|
|
|
|
|
|
|
|
fosx.addStep(shell.ShellCommand(
|
|
|
|
command=["make", "osx-tinderbox-dmg"],
|
|
|
|
env={
|
|
|
|
'T_BUNDLE': WithProperties("aegisub-%s-%s-%s-r%s", "buildername", "slavename", "buildnumber", "got_revision"),
|
|
|
|
'T_DMG': WithProperties("aegisub-%s-%s-%s-r%s", "buildername", "slavename", "buildnumber", "got_revision"),
|
|
|
|
},
|
|
|
|
name = "dmg",
|
|
|
|
description = ["dmging"],
|
|
|
|
descriptionDone = ["dmg"],
|
|
|
|
haltOnFailure=True
|
|
|
|
))
|
|
|
|
|
|
|
|
fosx.addStep(agi_upload(
|
|
|
|
blocksize=640*1024,
|
|
|
|
slavesrc="bundle.dmg",
|
|
|
|
mode=0644,
|
|
|
|
masterdest=WithProperties("tinderbox/osx/aegisub-%s-%s-%s-r%s.dmg", "buildername", "slavename", "buildnumber", "got_revision")),
|
|
|
|
name = "upload",
|
|
|
|
description = ["uploading"],
|
|
|
|
descriptionDone = ["uploaded"],
|
|
|
|
haltOnFailure=False,
|
|
|
|
flunkOnFailure=False
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
##########
|
|
|
|
# Factory
|
|
|
|
# OS X PPC
|
|
|
|
##########
|
|
|
|
fosx_ppc = factory.BuildFactory()
|
|
|
|
fosx_ppc.addStep(source.SVN(mode="clobber", svnurl=source_unix))
|
|
|
|
|
|
|
|
fosx_ppc.addStep(shell.ShellCommand(
|
|
|
|
name = "autogen",
|
|
|
|
description = "autogening",
|
|
|
|
descriptionDone = "autogen",
|
|
|
|
haltOnFailure=True,
|
|
|
|
command=["./autogen.sh", "--skip-configure"],
|
|
|
|
env={
|
|
|
|
'ACLOCAL_FLAGS': '-I /Users/verm/prefix/share/aclocal',
|
|
|
|
'AUTOMAKE': '/Users/verm/prefix/bin/automake-1.9',
|
|
|
|
'ACLOCAL': '/Users/verm/prefix/bin/aclocal-1.9',
|
|
|
|
'AUTOCONF': '/Users/verm/prefix/bin/autoconf-2.61',
|
|
|
|
'AUTOHEADER': '/Users/verm/prefix/bin/autoheader-2.61',
|
|
|
|
'BIN_CONVERT': '/Users/verm/prefix/bin/convert'
|
|
|
|
}
|
|
|
|
))
|
|
|
|
|
|
|
|
fosx_ppc.addStep(shell.ShellCommand(
|
|
|
|
command=["./configure",
|
|
|
|
"--prefix=/Users/verm/prefix",
|
|
|
|
WithProperties("--with-build-credit=BuildBot: %s (%s)", "buildername", "slavename"),
|
|
|
|
"--with-apple-opengl-framework",
|
2009-07-26 18:46:50 +02:00
|
|
|
"--with-wx-config=/Users/verm/prefix/lib/wx/config/osx_carbon-unicode-debug-2.9",
|
2009-07-23 21:38:19 +02:00
|
|
|
"--enable-debug"
|
|
|
|
"--prefix=/Users/verm/i",
|
|
|
|
"--disable-check-wx-opengl",
|
|
|
|
"--disable-check-wx-stc",
|
|
|
|
],
|
|
|
|
env={
|
|
|
|
'CCACHE_PATH': '/usr/bin',
|
|
|
|
'CCACHE_DIR': '/Users/verm/.ccache',
|
|
|
|
'CC': '/opt/local/libexec/ccache/gcc',
|
|
|
|
'CXX': '/opt/local/libexec/ccache/g++',
|
|
|
|
'PKG_CONFIG': '/Users/verm/prefix/bin/pkg-config',
|
|
|
|
'PKG_CONFIG_PATH': '/Users/verm/prefix/lib/pkgconfig',
|
|
|
|
'CXXFLAGS': '-I/Users/verm/prefix/include',
|
|
|
|
'LDFLAGS': '-L/Users/verm/prefix/lib',
|
|
|
|
'LUA_CFLAGS': '-I/Users/verm/prefix/include/lua51',
|
|
|
|
'LUA_LDFLAGS': '-L/Users/verm/prefix/lib/lua51 -llua',
|
|
|
|
'OPENAL_CFLAGS': '-framework OpenAL',
|
|
|
|
'OPENAL_LIBS': '-framework OpenAL',
|
|
|
|
'CFLAGS': '-I/Developer/SDKs/MacOSX10.5.sdk/usr/include',
|
|
|
|
'ICONV_LDFLAGS': '/usr/lib/libiconv.dylib',
|
|
|
|
},
|
|
|
|
name = "configure",
|
|
|
|
description = ["configuring"],
|
|
|
|
descriptionDone = ["configure"],
|
|
|
|
logfiles={
|
|
|
|
'config.log': 'config.log',
|
|
|
|
'config.status': 'config.status'
|
|
|
|
},
|
|
|
|
haltOnFailure=True
|
|
|
|
))
|
|
|
|
|
|
|
|
fosx_ppc.addStep(OOCompile(
|
|
|
|
command=["make"],
|
|
|
|
name = "build",
|
|
|
|
env={
|
|
|
|
'CCACHE_PATH': '/usr/bin',
|
|
|
|
'CCACHE_DIR': '/Users/verm/.ccache'
|
|
|
|
},
|
|
|
|
description = ["building"],
|
|
|
|
descriptionDone = ["build"],
|
|
|
|
haltOnFailure=True
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
|
|
fosx_ppc.addStep(shell.ShellCommand(
|
|
|
|
command=["make", "osx-tinderbox-bundle"],
|
|
|
|
env={
|
|
|
|
'T_BUNDLE': WithProperties("aegisub-%s-%s-%s-r%s", "buildername", "slavename", "buildnumber", "got_revision"),
|
|
|
|
},
|
|
|
|
name = "bundle",
|
|
|
|
description = ["bundling"],
|
|
|
|
descriptionDone = ["bundle"],
|
|
|
|
haltOnFailure=True
|
|
|
|
))
|
|
|
|
|
|
|
|
fosx_ppc.addStep(shell.ShellCommand(
|
|
|
|
command=["make", "osx-tinderbox-dmg"],
|
|
|
|
env={
|
|
|
|
'T_BUNDLE': WithProperties("aegisub-%s-%s-%s-r%s", "buildername", "slavename", "buildnumber", "got_revision"),
|
|
|
|
'T_DMG': WithProperties("aegisub-%s-%s-%s-r%s", "buildername", "slavename", "buildnumber", "got_revision"),
|
|
|
|
},
|
|
|
|
name = "dmg",
|
|
|
|
description = ["dmging"],
|
|
|
|
descriptionDone = ["dmg"],
|
|
|
|
haltOnFailure=True
|
|
|
|
))
|
|
|
|
|
|
|
|
fosx_ppc.addStep(agi_upload(
|
|
|
|
blocksize=640*1024,
|
|
|
|
slavesrc="bundle.dmg",
|
|
|
|
mode=0644,
|
|
|
|
masterdest=WithProperties("tinderbox/osx/aegisub-%s-%s-%s-r%s.dmg", "buildername", "slavename", "buildnumber", "got_revision")),
|
|
|
|
name = "upload",
|
|
|
|
description = ["uploading"],
|
|
|
|
descriptionDone = ["uploaded"],
|
|
|
|
haltOnFailure=False,
|
|
|
|
flunkOnFailure=False
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
#########
|
|
|
|
# Factory
|
|
|
|
# Windows
|
|
|
|
#########
|
|
|
|
fwin = factory.BuildFactory()
|
|
|
|
fwin.addStep(source.SVN(mode="clobber", svnurl=source_windows))
|
|
|
|
|
|
|
|
fwin.addStep(shell.ShellCommand(
|
|
|
|
command=["copy aegisub\\tinderbox\\windows\\config_windows.h aegisub\\src\\config\\config_windows.h"],
|
|
|
|
name = "configure",
|
|
|
|
description = ["configuring"],
|
|
|
|
descriptionDone = ["configure"],
|
|
|
|
haltOnFailure=True
|
|
|
|
))
|
|
|
|
|
|
|
|
fwin.addStep(OOCompile(
|
|
|
|
command=["aegisub\\tinderbox\\windows\\anpan.bat", "Release", "Win32"],
|
|
|
|
name = "build",
|
|
|
|
description = ["building"],
|
|
|
|
descriptionDone = ["build"],
|
|
|
|
haltOnFailure=True
|
|
|
|
))
|
|
|
|
|
|
|
|
fwin.addStep(shell.ShellCommand(
|
|
|
|
command=[WithProperties("aegisub\\tinderbox\\windows\\dist.bat %s %s %s %s", "buildername", "slavename", "buildnumber", "got_revision")],
|
|
|
|
name = "dist",
|
|
|
|
description = ["dist"],
|
|
|
|
descriptionDone = ["dist"],
|
|
|
|
haltOnFailure=True
|
|
|
|
))
|
|
|
|
|
|
|
|
fwin.addStep(agi_upload(
|
|
|
|
blocksize=640*1024,
|
|
|
|
slavesrc="dist.7z",
|
|
|
|
mode=0644,
|
|
|
|
masterdest=WithProperties("tinderbox/windows/aegisub-%s-%s-%s-r%s.7z", "buildername", "slavename", "buildnumber", "got_revision")),
|
|
|
|
name = "upload",
|
|
|
|
description = ["uploading"],
|
|
|
|
descriptionDone = ["uploaded"],
|
|
|
|
haltOnFailure=False,
|
|
|
|
flunkOnFailure=False
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
fwin64 = factory.BuildFactory()
|
|
|
|
fwin64.addStep(source.SVN(mode="clobber", svnurl=source_windows))
|
|
|
|
|
|
|
|
fwin64.addStep(shell.ShellCommand(
|
|
|
|
command=["copy aegisub\\tinderbox\\windows\\config_windows.h aegisub\\src\\config\\config_windows.h"],
|
|
|
|
name = "configure",
|
|
|
|
description = ["configuring"],
|
|
|
|
descriptionDone = ["configure"],
|
|
|
|
haltOnFailure=True
|
|
|
|
))
|
|
|
|
|
|
|
|
fwin64.addStep(OOCompile(
|
|
|
|
name = "build",
|
|
|
|
command=["aegisub\\tinderbox\\windows\\anpan.bat", "Release", "x64"],
|
|
|
|
description = ["building"],
|
|
|
|
descriptionDone = ["build"],
|
|
|
|
haltOnFailure=True
|
|
|
|
))
|
|
|
|
|
|
|
|
fwin64.addStep(shell.ShellCommand(
|
|
|
|
command=[WithProperties("aegisub\\tinderbox\\windows\\dist.bat %s %s %s %s", "buildername", "slavename", "buildnumber", "got_revision")],
|
|
|
|
name = "dist",
|
|
|
|
description = ["dist"],
|
|
|
|
descriptionDone = ["dist"],
|
|
|
|
haltOnFailure=True
|
|
|
|
))
|
|
|
|
|
|
|
|
fwin64.addStep(agi_upload(
|
|
|
|
blocksize=640*1024,
|
|
|
|
slavesrc="dist.7z",
|
|
|
|
mode=0644,
|
|
|
|
masterdest=WithProperties("tinderbox/windows/aegisub-%s-%s-%s-r%s.7z", "buildername", "slavename", "buildnumber", "got_revision")),
|
|
|
|
name = "upload",
|
|
|
|
description = ["uploading"],
|
|
|
|
descriptionDone = ["uploaded"],
|
|
|
|
haltOnFailure=False,
|
|
|
|
flunkOnFailure=False
|
|
|
|
)
|
|
|
|
|
2009-07-30 01:29:00 +02:00
|
|
|
|
|
|
|
#########
|
|
|
|
# Factory
|
|
|
|
# WWW
|
|
|
|
#########
|
|
|
|
|
|
|
|
fwww_dox = factory.BuildFactory()
|
|
|
|
fwww_dox.addStep(source.SVN(mode="clobber", svnurl=source_unix))
|
|
|
|
|
|
|
|
fwww_dox.addStep(shell.ShellCommand(
|
|
|
|
name = "autogen",
|
|
|
|
description = "autogening",
|
|
|
|
descriptionDone = "autogen",
|
|
|
|
haltOnFailure=True,
|
|
|
|
command=["./autogen.sh", "--skip-configure"],
|
|
|
|
env={
|
|
|
|
'ACLOCAL_FLAGS': '-I /Users/verm/prefix/share/aclocal',
|
|
|
|
'AUTOMAKE': '/Users/verm/prefix/bin/automake-1.9',
|
|
|
|
'ACLOCAL': '/Users/verm/prefix/bin/aclocal-1.9',
|
|
|
|
'AUTOCONF': '/Users/verm/prefix/bin/autoconf-2.61',
|
|
|
|
'AUTOHEADER': '/Users/verm/prefix/bin/autoheader-2.61',
|
|
|
|
'BIN_CONVERT': '/Users/verm/prefix/bin/convert'
|
|
|
|
}
|
|
|
|
))
|
|
|
|
|
|
|
|
|
2009-07-23 21:38:19 +02:00
|
|
|
##########
|
|
|
|
# BUILDERS
|
|
|
|
##########
|
|
|
|
|
|
|
|
slave_win = ["anpan"]
|
|
|
|
slave_freebsd = ["tako"]
|
|
|
|
slave_debian = ["mochi"]
|
|
|
|
slave_ubuntu = ["nori"]
|
|
|
|
slave_osx = ["kokoro"]
|
|
|
|
slave_osx_ppc = ["mokona"]
|
2009-07-30 01:29:00 +02:00
|
|
|
slave_www = ['shoyu']
|
2009-07-23 21:38:19 +02:00
|
|
|
|
|
|
|
Windowsx8632 = { 'name': "Windows-x86_32", 'slavenames': slave_win, 'builddir': "full_Windows-x86_32", 'factory': fwin }
|
|
|
|
Windowsx8664 = { 'name': "Windows-x86_64", 'slavenames': slave_win, 'builddir': "full_Windows-x86_64", 'factory': fwin64 }
|
|
|
|
DarwinPPC = { 'name': "Darwin-PPC", 'slavenames': slave_osx_ppc, 'builddir': "full_Darwin-PPC", 'factory': fosx_ppc }
|
|
|
|
Darwinx8664 = { 'name': "Darwin-x86_64", 'slavenames': slave_osx, 'builddir': "full_Darwin-x86_64", 'factory': fosx }
|
|
|
|
FreeBSDx8664 = { 'name': "FreeBSD-x86_64", 'slavenames': slave_freebsd, 'builddir': "full_FreeBSD-x86_64", 'factory': ffbsd }
|
|
|
|
Ubuntux8664 = { 'name': "Ubuntu-x86_64", 'slavenames': slave_ubuntu, 'builddir': "full_Ubuntu-x86_64", 'factory': flinux }
|
|
|
|
Debianx8632 = { 'name': "Debian-x86_32", 'slavenames': slave_debian, 'builddir': "full_Debian-x86_32", 'factory': flinux }
|
|
|
|
|
|
|
|
UNIXDist = { 'name': "UNIX Dist", 'slavenames': slave_debian + slave_ubuntu + slave_freebsd, 'builddir': "UNIX_Dist", 'factory': funix_dist }
|
2009-07-30 01:29:00 +02:00
|
|
|
Doxygen = { 'name': "Doxygen", 'slavenames': slave_www, 'builddir': "www_Doxygen", 'factory': fwww_dox }
|
2009-07-23 21:38:19 +02:00
|
|
|
|
|
|
|
c['builders'] = [
|
|
|
|
Windowsx8632,
|
|
|
|
Windowsx8664,
|
|
|
|
DarwinPPC,
|
|
|
|
Darwinx8664,
|
|
|
|
FreeBSDx8664,
|
|
|
|
Ubuntux8664,
|
|
|
|
Debianx8632,
|
2009-07-30 01:29:00 +02:00
|
|
|
UNIXDist,
|
|
|
|
Doxygen
|
2009-07-23 21:38:19 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
builder_name_windows = [
|
|
|
|
"Windows-x86_32",
|
|
|
|
"Windows-x86_64"
|
|
|
|
]
|
|
|
|
|
|
|
|
builder_name_unix = [
|
|
|
|
"FreeBSD-x86_64",
|
|
|
|
"Ubuntu-x86_64",
|
|
|
|
"Debian-x86_32"
|
|
|
|
]
|
|
|
|
|
|
|
|
builder_name_darwin = [
|
|
|
|
"Darwin-PPC",
|
|
|
|
"Darwin-x86_64"
|
|
|
|
]
|
|
|
|
|
2009-07-30 01:29:00 +02:00
|
|
|
builder_name_www = [
|
|
|
|
"Doxygen"
|
|
|
|
]
|
|
|
|
|
2009-07-23 21:38:19 +02:00
|
|
|
|
|
|
|
############
|
|
|
|
# SCHEDULERS
|
|
|
|
############
|
|
|
|
|
|
|
|
from buildbot.scheduler import Scheduler
|
|
|
|
from buildbot.scheduler import Dependent
|
|
|
|
|
|
|
|
full_windows = Scheduler(name="full_windows",
|
|
|
|
branch=None,
|
|
|
|
treeStableTimer=901,
|
|
|
|
builderNames=builder_name_windows,
|
|
|
|
fileIsImportant=interested_windows)
|
|
|
|
|
|
|
|
full_unix = Scheduler(name="full_unix",
|
|
|
|
branch=None,
|
|
|
|
treeStableTimer=901,
|
|
|
|
builderNames=builder_name_unix,
|
|
|
|
fileIsImportant=interested_unix)
|
|
|
|
|
|
|
|
full_darwin = Scheduler(name="full_darwin",
|
|
|
|
branch=None,
|
|
|
|
treeStableTimer=901,
|
|
|
|
builderNames=builder_name_darwin,
|
|
|
|
fileIsImportant=interested_osx)
|
2009-07-30 01:29:00 +02:00
|
|
|
|
|
|
|
full_www = Scheduler(name="full_www",
|
|
|
|
branch=None,
|
|
|
|
treeStableTimer=901,
|
|
|
|
builderNames=builder_name_www,
|
|
|
|
fileIsImportant=interested_doxygen)
|
2009-07-23 21:38:19 +02:00
|
|
|
|
|
|
|
unix_dist = Dependent("unix_dist",
|
|
|
|
full_unix,
|
|
|
|
builderNames=["UNIX Dist"])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
from buildbot.scheduler import Try_Jobdir
|
|
|
|
try_job = Try_Jobdir("try", builder_name_windows + builder_name_unix + builder_name_darwin, jobdir="jobdir")
|
|
|
|
|
2009-07-30 01:29:00 +02:00
|
|
|
c['schedulers'] = [full_windows, full_unix, full_darwin, full_www, unix_dist]
|
2009-07-23 21:38:19 +02:00
|
|
|
|
|
|
|
from buildbot import scheduler
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
################
|
|
|
|
# STATUS TARGETS
|
|
|
|
################
|
|
|
|
|
|
|
|
c['status'] = []
|
|
|
|
|
|
|
|
# Website http://builder.aegisub.org/
|
|
|
|
from buildbot.status import html
|
|
|
|
c['status'].append(html.WebStatus(http_port="tcp:8001:interface=127.0.0.1", allowForce=1))
|
|
|
|
|
|
|
|
# Send out status emails.
|
|
|
|
from buildbot.status import mail
|
|
|
|
c['status'].append(mail.MailNotifier(fromaddr="tinderbox@aegisub.org",
|
|
|
|
extraRecipients=["aegisub@darkbeer.org"],
|
|
|
|
sendToInterestedUsers=False))
|
|
|
|
|
|
|
|
# IRC!
|
|
|
|
from buildbot.status import words
|
|
|
|
c['status'].append(words.IRC(
|
|
|
|
host="irc.rizon.net",
|
|
|
|
nick="aegibuild",
|
|
|
|
channels=["#aegisub"],
|
|
|
|
notify_events={
|
|
|
|
'exception': 1,
|
|
|
|
'successToFailure': 1,
|
|
|
|
'failureToSuccess': 1
|
|
|
|
}
|
|
|
|
))
|
|
|
|
|
|
|
|
# Realtime client
|
|
|
|
# from buildbot.status import client
|
|
|
|
# c['status'].append(client.PBListener(9988))
|