選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

config-trunk-private.xml 976 B

12345678910111213141516171819202122
  1. <build xmlns:sh="http://bitten.edgewall.org/tools/sh"
  2. xmlns:svn="http://bitten.edgewall.org/tools/svn"
  3. xmlns:c="http://bitten.edgewall.org/tools/c">
  4. <step id="checkout" description="Checkout source from repository">
  5. <svn:checkout url="svn://svn.zoy.org/lolengine/" path="${path}" revision="${revision}" />
  6. </step>
  7. <step id="bootstrap" description="Bootstrap build system">
  8. <sh:exec file="./build/lol-build" args="bootstrap ${platform}"/>
  9. </step>
  10. <step id="configure" description="Configure tree">
  11. <sh:exec file="./build/lol-build" args="configure ${platform}"/>
  12. </step>
  13. <step id="build" description="Build tree">
  14. <sh:exec file="./build/lol-build" args="build ${platform}"/>
  15. </step>
  16. <step id="check" description="Run tests">
  17. <sh:exec file="./build/lol-build" args="check ${platform}"/>
  18. </step>
  19. <step id="clean" description="Clean tree">
  20. <sh:exec file="./build/lol-build" args="clean ${platform}"/>
  21. </step>
  22. </build>