Edgewall Software

Changes between Version 51 and Version 52 of Bitten Faq


Ignore:
Timestamp:
Sep 24, 2008, 9:39:41 PM (16 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Bitten Faq

    v51 v52  
    4646See this sample for [wiki:BittenSampleRecipes Microsoft Visual Studio projects using MSBUILD] or this one for [wiki:BittenSampleJavaRecipe Java projects using JUnit and Ant].
    4747
     48
     49=== Bitten Recipe Collection ===
     50Following are a few more real working recipe to demostrate the bitten recipe commands and their uses.
     51==== Automation of getting and untar hello-2.3.tar.gz from ftp.gnu.org ====
     52{{{
     53<!--
     54Tested on fedora 9
     55-->
     56<build description="Building System"
     57      xmlns:sh="http://bitten.cmlenz.net/tools/sh">
     58 <step id="Getting hello-2.3.tar.gz from ftp.gnu.org using wget">
     59   <sh:exec file="/usr/bin/wget" args="ftp://ftp.gnu.org/pub/gnu/hello/hello-2\
     60.3.tar.gz"/>
     61 </step>
     62 <step id="untar hello-2.3.tar.gz">
     63   <sh:exec executable="gtar" args="xzf hello-2.3.tar.gz"/>
     64 </step>
     65</build>
     66
     67}}}
     68
    4869== Bitten Slave ==
    4970
     
    85106The charts are added automatically if your recipe creates junit reports and/or code-coverage reports.  To see a sample recipe that will produce junit test results from Java see [wiki:BittenSampleJavaRecipe build recipes for Java projects using JUnit and Ant].  To create your own custom charts, see [wiki:AddingCharts Adding Custom Charts to Bitten.]
    86107
    87 == Bitten Recipe Collection ==
    88 Following are a few more real working recipe to demostrate the bitten recipe commands and their uses.
    89 === Automation of getting and untar hello-2.3.tar.gz from ftp.gnu.org ===
    90 {{{
    91 <!--
    92 Tested on fedora 9
    93 -->
    94 <build description="Building System"
    95       xmlns:sh="http://bitten.cmlenz.net/tools/sh">
    96  <step id="Getting hello-2.3.tar.gz from ftp.gnu.org using wget">
    97    <sh:exec file="/usr/bin/wget" args="ftp://ftp.gnu.org/pub/gnu/hello/hello-2\
    98 .3.tar.gz"/>
    99  </step>
    100  <step id="untar hello-2.3.tar.gz">
    101    <sh:exec executable="gtar" args="xzf hello-2.3.tar.gz"/>
    102  </step>
    103 </build>
    104 
    105 }}}
     108=