# HG changeset patch # User Mark Wielaard # Date 1298552059 -3600 # Node ID 1866231bf5e894756b3423d044572496025edfef # Parent 08aadbc57f2942a0a108e7ad2baabe1b658e3b63 Add icedtea6-squeeze-x86_64-quick-shark builder. diff -r 08aadbc57f29 -r 1866231bf5e8 icedtea/master.cfg --- a/icedtea/master.cfg Wed Feb 23 22:26:53 2011 +0100 +++ b/icedtea/master.cfg Thu Feb 24 13:54:19 2011 +0100 @@ -62,6 +62,7 @@ "icedtea6-squeeze-x86_64-quick-hotspot", "icedtea6-squeeze-x86_64-quick-jamvm", "icedtea6-squeeze-x86_64-quick-cacao", + "icedtea6-squeeze-x86_64-quick-shark", "icedtea6-natty-armv7l-quick", "icedtea6-natty-armv7l-quick-cacao", "icedtea6-natty-armv7l-quick-jamvm", @@ -316,6 +317,24 @@ description="check-langtools", workdir="build")) +f3s = factory.BuildFactory() +f3s.addStep(Mercurial(baseURL=hgrepo, workdir="src", mode="update")) +f3s.addStep(ShellCommand(command=["./autogen.sh"], + workdir="src", + description="autogen")) +f3s.addStep(ShellCommand(command=["rm", "-rf", "build"], + workdir=".", + description="clean build dir")) +f3s.addStep(Configure(command=["../src/configure", + "--disable-bootstrap", + "--disable-docs", + "--enable-shark"], + workdir="build")) +f3s.addStep(Compile(workdir="build")) +f3s.addStep(JTRegCheck(command=["make", "check-langtools"], + description="check-langtools", + workdir="build")) + f3an = factory.BuildFactory() f3an.addStep(Mercurial(baseURL=hgrepo, workdir="src", mode="update")) f3an.addStep(ShellCommand(command=["./autogen.sh"], @@ -604,6 +623,11 @@ 'slavenames': ["squeeze-x86_64"], 'builddir': "icedtea6-quick-cacao", 'factory': f3c } +icedtea6_builder_quick_shark = { + 'name': "icedtea6-squeeze-x86_64-quick-shark", + 'slavenames': ["squeeze-x86_64"], + 'builddir': "icedtea6-quick-shark", + 'factory': f3c } icedtea6_builder_quick_arm_natty = { 'name': "icedtea6-natty-armv7l-quick", 'slavenames': ["natty-armv7l"], 'builddir': "icedtea6-natty-armv7l-quick", @@ -718,6 +742,7 @@ icedtea6_builder_quick_hotspot, icedtea6_builder_quick_jamvm, icedtea6_builder_quick_cacao, + icedtea6_builder_quick_shark, icedtea6_builder_quick_arm_natty, icedtea6_builder_quick_arm_natty_cacao, icedtea6_builder_quick_arm_natty_jamvm,