Skip to content

Commit

Permalink
BUILDBOT: Disable all build only platforms to save space.
Browse files Browse the repository at this point in the history
We still build them on buildbot2, which doesn't do notifications right now
but stable builds are more important during testing phase.
  • Loading branch information
lordhoto committed Feb 13, 2016
1 parent 141193b commit d18f093
Showing 1 changed file with 48 additions and 48 deletions.
96 changes: 48 additions & 48 deletions config/master.cfg
Expand Up @@ -173,14 +173,14 @@ scumm_platforms_stable["debian-x86"] = p
scumm_desktop_platforms.append("debian-x86")

# debian x86 32bit - testing null backend build.
p_nullbackend = copy.deepcopy(p)

p_nullbackend["configureargs"].extend( [
"--backend=null"
] )

scumm_platforms_master["debian-x86-nullbackend"] = p_nullbackend
# FIXME: Disabled because old buildbot is running out of diskspace.
# FIXME: Disabled because old buildbot is running out of diskspace. 20160213
#p_nullbackend = copy.deepcopy(p)
#
#p_nullbackend["configureargs"].extend( [
# "--backend=null"
#] )
#
#scumm_platforms_master["debian-x86-nullbackend"] = p_nullbackend
#scumm_platforms_stable["debian-x86-nullbackend"] = p_nullbackend
#scumm_buildonly_platforms.append("debian-x86-nullbackend")

Expand Down Expand Up @@ -225,38 +225,38 @@ scumm_platforms_stable["debian-x86_64"] = p
scumm_desktop_platforms.append("debian-x86_64")

# debian x86 using LLVM Clang compiler.
scumm_root_debian_x86_clang = "/opt/toolchains/clang+llvm-3.3-i386-debian6"
scumm_env_debian_x86_clang = copy.deepcopy(scumm_env)
scumm_env_debian_x86_clang["PATH"] = "%s/bin:%s" % (scumm_root_debian_x86_clang, DEFAULT_PATH)
scumm_env_debian_x86_clang["CXX"] = "ccache clang++"
scumm_env_debian_x86_clang["CXXFLAGS"] = "-Qunused-arguments -isystem %s/include" % scumm_root_debian_x86_clang
scumm_env_debian_x86_clang["LDFLAGS"] = "-Wl,-rpath,%s/lib" % scumm_root_debian_x86_clang

p = {
"configureargs": [ ],
"configureargs-tools": [ ],
"env": scumm_env_debian_x86_clang,
"package": [ "scummvm" ],
"package-tools": [
"construct_mohawk",
"create_sjisfnt",
"decine",
#"decompile", # Decompiler currently not built - BOOST library not present
"degob",
"dekyra",
"deriven",
"descumm",
"desword2",
"extract_mohawk",
"gob_loadcalc",
#"scummvm-tools", # GUI tools currently not built - WxWidgets library not present
"scummvm-tools-cli"
],
"archive_format": "tar.xz"
}

scumm_platforms_master["debian-x86-clang"] = p
# FIXME: Disabled because old buildbot is running out of diskspace.
# FIXME: Disabled because old buildbot is running out of diskspace. 20160213
#scumm_root_debian_x86_clang = "/opt/toolchains/clang+llvm-3.3-i386-debian6"
#scumm_env_debian_x86_clang = copy.deepcopy(scumm_env)
#scumm_env_debian_x86_clang["PATH"] = "%s/bin:%s" % (scumm_root_debian_x86_clang, DEFAULT_PATH)
#scumm_env_debian_x86_clang["CXX"] = "ccache clang++"
#scumm_env_debian_x86_clang["CXXFLAGS"] = "-Qunused-arguments -isystem %s/include" % scumm_root_debian_x86_clang
#scumm_env_debian_x86_clang["LDFLAGS"] = "-Wl,-rpath,%s/lib" % scumm_root_debian_x86_clang
#
#p = {
# "configureargs": [ ],
# "configureargs-tools": [ ],
# "env": scumm_env_debian_x86_clang,
# "package": [ "scummvm" ],
# "package-tools": [
# "construct_mohawk",
# "create_sjisfnt",
# "decine",
# #"decompile", # Decompiler currently not built - BOOST library not present
# "degob",
# "dekyra",
# "deriven",
# "descumm",
# "desword2",
# "extract_mohawk",
# "gob_loadcalc",
# #"scummvm-tools", # GUI tools currently not built - WxWidgets library not present
# "scummvm-tools-cli"
# ],
# "archive_format": "tar.xz"
#}
#
#scumm_platforms_master["debian-x86-clang"] = p
#scumm_platforms_stable["debian-x86-clang"] = p
# Desktop omitted as covered by debian-x86 build
#scumm_buildonly_platforms.append("debian-x86-clang")
Expand Down Expand Up @@ -347,14 +347,14 @@ scumm_platforms_master["mingw-w64"] = p
scumm_platforms_stable["mingw-w64"] = p
scumm_desktop_platforms.append("mingw-w64")

p_cplusplus11 = copy.deepcopy(p)

p_cplusplus11["configureargs"].extend( [
"--enable-c++11"
] )

scumm_platforms_master["mingw-w64-cplusplus11"] = p_cplusplus11
# FIXME: Disabled because old buildbot is running out of diskspace.
# FIXME: Disabled because old buildbot is running out of diskspace. 20160213
#p_cplusplus11 = copy.deepcopy(p)
#
#p_cplusplus11["configureargs"].extend( [
# "--enable-c++11"
#] )
#
#scumm_platforms_master["mingw-w64-cplusplus11"] = p_cplusplus11
#scumm_platforms_stable["mingw-w64-cplusplus11"] = p_cplusplus11
#scumm_buildonly_platforms.append("mingw-w64-cplusplus11")

Expand Down

0 comments on commit d18f093

Please sign in to comment.