bug 359336: should have an x86_64 Linux tinderbox with new gcc - add a new cvsroot for linux64 builds. r=rhelmer, patch=me

This commit is contained in:
bhearsum%mozilla.com 2008-03-11 16:57:40 +00:00
Родитель 2435f536db
Коммит 0d67c2d166
1 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

@ -108,6 +108,7 @@ c['sources'].append(PBChangeSource())
####### BUILDERS ####### BUILDERS
cvsroot = ":ext:cltbld@cvs.mozilla.org:/cvsroot" cvsroot = ":ext:cltbld@cvs.mozilla.org:/cvsroot"
stgbld_cvsroot = ":ext:cltbld@cvs.mozilla.org:/cvsroot"
cvsmodule = "mozilla/tools/release" cvsmodule = "mozilla/tools/release"
ftpserver = "stage.mozilla.org" ftpserver = "stage.mozilla.org"
automation_tag = "RELEASE_AUTOMATION_M7_2" automation_tag = "RELEASE_AUTOMATION_M7_2"
@ -207,13 +208,13 @@ c['builders'].append({ 'name': 'macosx_shark_build',
linux64BuildFactory = factory.BuildFactory() linux64BuildFactory = factory.BuildFactory()
linux64BuildFactory.addStep(ShellCommand, description='checkout client.mk', linux64BuildFactory.addStep(ShellCommand, description='checkout client.mk',
workdir=".", workdir=".",
command=['cvs', '-d', cvsroot, 'co', '-d', 'mozilla', command=['cvs', '-d', stgbld_cvsroot, 'co', '-d', 'mozilla',
'mozilla/client.mk'], 'mozilla/client.mk'],
haltOnFailure=1 haltOnFailure=1
) )
linux64BuildFactory.addStep(ShellCommand, description='checkout mozconfig', linux64BuildFactory.addStep(ShellCommand, description='checkout mozconfig',
workdir="mozilla", workdir="mozilla",
command=['cvs', '-d', cvsroot, 'co', '-d', 'tinderbox-configs', command=['cvs', '-d', stgbld_cvsroot, 'co', '-d', 'tinderbox-configs',
'mozilla/tools/tinderbox-configs/firefox/linux'], 'mozilla/tools/tinderbox-configs/firefox/linux'],
haltOnFailure=1 haltOnFailure=1
) )
@ -272,13 +273,13 @@ linux64NightlyFactory.addStep(ShellCommand, description='clobber',
) )
linux64NightlyFactory.addStep(ShellCommand, description='checkout client.mk', linux64NightlyFactory.addStep(ShellCommand, description='checkout client.mk',
workdir=".", workdir=".",
command=['cvs', '-d', cvsroot, 'co', '-d', 'mozilla', command=['cvs', '-d', stgbld_cvsroot, 'co', '-d', 'mozilla',
'mozilla/client.mk'], 'mozilla/client.mk'],
haltOnFailure=1 haltOnFailure=1
) )
linux64NightlyFactory.addStep(ShellCommand, description='checkout mozconfig', linux64NightlyFactory.addStep(ShellCommand, description='checkout mozconfig',
workdir="mozilla", workdir="mozilla",
command=['cvs', '-d', cvsroot, 'co', '-d', 'tinderbox-configs', command=['cvs', '-d', stgbld_cvsroot, 'co', '-d', 'tinderbox-configs',
'mozilla/tools/tinderbox-configs/firefox/linux'], 'mozilla/tools/tinderbox-configs/firefox/linux'],
haltOnFailure=1 haltOnFailure=1
) )