Browse Source

tunnel jenkins property via three layers of build files

master
Stefan Bodewig 7 years ago
parent
commit
294f13b8c9
2 changed files with 6 additions and 1 deletions
  1. +1
    -0
      build.xml
  2. +5
    -1
      launch-build.xml

+ 1
- 0
build.xml View File

@@ -1914,6 +1914,7 @@ ${antunit.reports}
<propertyset>
<propertyref name="antunit.tmpdir"/>
<propertyref name="ant.home"/>
<propertyref name="jenkins"/>
</propertyset>
</au:antunit>
</target>


+ 5
- 1
launch-build.xml View File

@@ -21,7 +21,11 @@
Build file be able to launch the boostrap build of Ant on every supported platform
</description>
<property name="args" value="allclean test -Dignore.tests.failed=true -Doptional.jars.whenmanifestonly=skip" />
<property name="default-args" value="allclean test -Dignore.tests.failed=true -Doptional.jars.whenmanifestonly=skip" />
<condition property="args" value="${default-args} -Djenkins=t">
<isset property="jenkins"/>
</condition>
<property name="args" value="${default-args}" />

<condition property="launch.cmd" value="${basedir}/build.sh">
<os family="unix" />


Loading…
Cancel
Save