Browse Source

web: add a Bitten configuration for the public builds, and import the

verbatim bitten_config.html template for future modification.
legacy
Sam Hocevar sam 12 years ago
parent
commit
de9be173e4
2 changed files with 22 additions and 0 deletions
  1. +0
    -0
      build/bitten/config-trunk-private.xml
  2. +22
    -0
      build/bitten/config-trunk-public.xml

build/bitten.xml → build/bitten/config-trunk-private.xml View File


+ 22
- 0
build/bitten/config-trunk-public.xml View File

@@ -0,0 +1,22 @@
<build xmlns:sh="http://bitten.edgewall.org/tools/sh"
xmlns:svn="http://bitten.edgewall.org/tools/svn"
xmlns:c="http://bitten.edgewall.org/tools/c">
<step id="checkout" description="Checkout source from repository">
<svn:checkout url="svn://svn.zoy.org/lolengine/" path="${path}" revision="${revision}" username="anonymous" password="" no_auth_cache="true" />
</step>
<step id="bootstrap" description="Bootstrap build system">
<sh:exec file="./build/lol-build" args="bootstrap ${platform}"/>
</step>
<step id="configure" description="Configure tree">
<sh:exec file="./build/lol-build" args="configure ${platform}"/>
</step>
<step id="build" description="Build tree">
<sh:exec file="./build/lol-build" args="build ${platform}"/>
</step>
<step id="check" description="Run tests">
<sh:exec file="./build/lol-build" args="check ${platform}"/>
</step>
<step id="clean" description="Clean tree">
<sh:exec file="./build/lol-build" args="clean ${platform}"/>
</step>
</build>

Loading…
Cancel
Save