Enabled GCC 4.6 bot.

BUG=
TEST=

Review URL: https://webrtc-codereview.appspot.com/369019

git-svn-id: http://webrtc.googlecode.com/svn/trunk@1565 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
phoglund@webrtc.org 2012-01-27 15:40:21 +00:00
parent 04cf69a714
commit 31ba407ac2

View File

@ -36,6 +36,7 @@ c['slaves'] = [BuildSlave("android", "pass", max_builds=1),
BuildSlave("linux-slave-2", "pass", max_builds=1),
BuildSlave("linux-slave-4", "pass", max_builds=1),
BuildSlave("linux-slave-5", "pass", max_builds=1),
BuildSlave("linux-slave-gcc-4.6", "pass", max_builds=1),
BuildSlave("linux_video", "pass", max_builds=1),
BuildSlave("mac-slave-1", "pass", max_builds=1),
BuildSlave("win-slave", "pass", max_builds=1),
@ -75,6 +76,7 @@ webrtc_scheduler = Scheduler(name="all", branch=None, treeStableTimer=5*60,
"Linux32bitRelease",
"Linux64bitRelease",
"Linux32bitDBG",
"Linux64bitDBG-GCC4.6",
"Android",
"LinuxVideoTest"])
c['schedulers'] = [webrtc_scheduler]
@ -190,6 +192,11 @@ linux_factory_64_dbg.EnableBuild()
linux_factory_64_dbg.EnableHeadLess(HEADLESS_LINUX)
linux_factory_64_dbg.EnableTests(DEFAULT_LINUX_TESTS)
linux_factory_64_dbg_no_coverage = utils.WebRTCLinuxFactory()
linux_factory_64_dbg_no_coverage.EnableBuild()
linux_factory_64_dbg_no_coverage.EnableHeadLess(HEADLESS_LINUX)
linux_factory_64_dbg_no_coverage.EnableTests(DEFAULT_LINUX_TESTS)
linux_factory_32_release = utils.WebRTCLinuxFactory(enable_coverage=True)
linux_factory_32_release.EnableBuild(release=True, build32=True)
linux_factory_32_release.EnableHeadLess(HEADLESS_LINUX)
@ -305,10 +312,16 @@ android_builder_1 = {
'builddir': "android",
'factory': android_factory,
}
linux_builder_gcc_4_6 = {
'name': "Linux64bitDBG-GCC4.6",
'slavename': "linux-slave-gcc-4.6",
'builddir': "linux-slave-gcc-4.6",
'factory': linux_factory_64_dbg_no_coverage,
}
c['builders'] = [win_builder_1, win_builder_2, mac_builder_1, chromeos_builder,
linux_builder_1, linux_clang_builder, linux_builder_2,
linux_builder_3, linux_builder_4, android_builder_1,
linux_video_builder]
linux_video_builder, linux_builder_gcc_4_6]
####### STATUS TARGETS
@ -364,5 +377,4 @@ c['projectURL'] = "http://www.webrtc.org"
# with an externally-visible host name which the buildbot cannot figure out
# without some help.
#c['buildbotURL'] = "http://localhost:8010/"
c['buildbotURL'] = "http://webrtc-cb-linux-master.cbf.corp.google.com:8010/"