浏览代码

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 年前
父节点
当前提交
de9be173e4
共有 2 个文件被更改,包括 22 次插入0 次删除
  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 查看文件


+ 22
- 0
build/bitten/config-trunk-public.xml 查看文件

@@ -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>

正在加载...
取消
保存