# HG changeset patch # User MattD # Date 1254908201 -3600 # Node ID 136a11aee8bdafa640187e77d8c50750fbb0dbec # Parent 6f70bcc536bb8c738d0b5d145cac9e544811be1c# Parent 4a27eba1d297b4674dd360aca5b14558dea0cda9 catchup merge diff -r 6f70bcc536bb -r 136a11aee8bd common/build.test.xml --- a/common/build.test.xml Tue Oct 06 18:15:24 2009 +0100 +++ b/common/build.test.xml Wed Oct 07 10:36:41 2009 +0100 @@ -159,7 +159,7 @@ - + diff -r 6f70bcc536bb -r 136a11aee8bd common/build.xml --- a/common/build.xml Tue Oct 06 18:15:24 2009 +0100 +++ b/common/build.xml Wed Oct 07 10:36:41 2009 +0100 @@ -110,7 +110,7 @@ - + @@ -118,6 +118,25 @@ + + + + + + + + + + + + + + + + + +Build Environment Check failed. To stop this failure aborting the build set property sf.suppress.buildenv.check to any value. + @@ -191,25 +210,35 @@ - + [SF-PREBUILD] + + + + + + [SF-DIAMONDS-CONNECT] + + + + + + [SF-DIAMONDS-TAG-BUILD] - - - - - - ant: antProperties() - - + + + + + + @@ -430,6 +459,14 @@ + + + + + + + + diff -r 6f70bcc536bb -r 136a11aee8bd common/diamonds/sf-tag-build.xml.ftl --- a/common/diamonds/sf-tag-build.xml.ftl Tue Oct 06 18:15:24 2009 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,8 +0,0 @@ - - - - 10 - - ${ant['sf.spec.publish.diamonds.tag']} - - \ No newline at end of file diff -r 6f70bcc536bb -r 136a11aee8bd common/tools/brag/brag.xsl --- a/common/tools/brag/brag.xsl Tue Oct 06 18:15:24 2009 +0100 +++ b/common/tools/brag/brag.xsl Wed Oct 07 10:36:41 2009 +0100 @@ -18,7 +18,7 @@

- Overall BRAG staus: + Overall BRAGG staus: BLACK RED diff -r 6f70bcc536bb -r 136a11aee8bd common/tools/brag/raptorToBRAG.pl --- a/common/tools/brag/raptorToBRAG.pl Tue Oct 06 18:15:24 2009 +0100 +++ b/common/tools/brag/raptorToBRAG.pl Wed Oct 07 10:36:41 2009 +0100 @@ -46,7 +46,7 @@ $xmlNewline, bless { - name => "build", + name => "Build", Kids => [ $xmlNewline ] }, "phase", ] diff -r 6f70bcc536bb -r 136a11aee8bd common/tools/brag/rules.BuildEnvironmentCheck.tsv --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/brag/rules.BuildEnvironmentCheck.tsv Wed Oct 07 10:36:41 2009 +0100 @@ -0,0 +1,3 @@ +^SHOWSTOPPER RAISED: critical +^ERROR: major +^WARNING: minor diff -r 6f70bcc536bb -r 136a11aee8bd common/tools/brag/rules.PreprocessPackageConfig.tsv --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/brag/rules.PreprocessPackageConfig.tsv Wed Oct 07 10:36:41 2009 +0100 @@ -0,0 +1,1 @@ +^Warning: minor diff -r 6f70bcc536bb -r 136a11aee8bd common/tools/generate_diamonds_tags_xml.pl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/common/tools/generate_diamonds_tags_xml.pl Wed Oct 07 10:36:41 2009 +0100 @@ -0,0 +1,54 @@ +#! perl -w +# Copyright (c) 2009 Symbian Foundation Ltd +# This component and the accompanying materials are made available +# under the terms of the License "Eclipse Public License v1.0" +# which accompanies this distribution, and is available +# at the URL "http://www.eclipse.org/legal/epl-v10.html". +# +# Initial Contributors: +# Symbian Foundation Ltd - initial contribution. +# +# Contributors: +# +# Description: +# Generate an XML file in the Diamonds format to upload build tags to Diamonds + +use strict; + +use Getopt::Long; + +my $taglist = 0; +my $outputfile = 0; +my $help = 0; +GetOptions(( + 'tags:s' => \$taglist, + 'output:s' => \$outputfile, + 'help!' => \$help, +)); + +if ($help or !$outputfile) +{ + print "Usage: perl generate_diamonds_tags_xml.pl --tags COMMA_SEPARATED_TAG_LIST --output OUTPUT_FILE\n"; +} + +open(FILE, ">$outputfile"); + +print FILE <<_END_HEADER; + + + 13 + +_END_HEADER + +my @tags = split(/,/, $taglist); +for (@tags) +{ + print FILE " $_\n"; +} + +print FILE <<_END_TRAILER; + + +_END_TRAILER + +close(FILE);