Rename alltests* targets in build.xml
"ant alltests" is now "ant committests" "ant alltests.public" is now "ant committests.public" "ant alltests.gatk.packagejar" is now "ant releasetests.gatk.packagejar" "ant alltests.queue.packagejar" is now "ant releasetests.queue.packagejar" This is going into both Stable + Unstable so that all Bamboo plans can be properly updated at the same time.
This commit is contained in:
parent
80a4ce0edf
commit
b07fdb1089
|
|
@ -962,19 +962,19 @@
|
||||||
<property name="testng.classpath" value="testng.default.classpath" />
|
<property name="testng.classpath" value="testng.default.classpath" />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="alltests">
|
<target name="committests">
|
||||||
<antcall target="test" inheritAll="false"/>
|
<antcall target="test" inheritAll="false"/>
|
||||||
<antcall target="integrationtest" inheritAll="false"/>
|
<antcall target="integrationtest" inheritAll="false"/>
|
||||||
<antcall target="pipelinetest" inheritAll="false"/>
|
<antcall target="pipelinetest" inheritAll="false"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="alltests.public">
|
<target name="committests.public">
|
||||||
<antcall target="test.public" inheritAll="false"/>
|
<antcall target="test.public" inheritAll="false"/>
|
||||||
<antcall target="integrationtest.public" inheritAll="false"/>
|
<antcall target="integrationtest.public" inheritAll="false"/>
|
||||||
<antcall target="pipelinetest.public" inheritAll="false"/>
|
<antcall target="pipelinetest.public" inheritAll="false"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="alltests.gatk.packagejar" depends="init.buildpublic,package">
|
<target name="releasetests.gatk.packagejar" depends="init.buildpublic,package">
|
||||||
<antcall target="test.public" inheritAll="false">
|
<antcall target="test.public" inheritAll="false">
|
||||||
<param name="testng.classpath" value="testng.gatk.releasetest.classpath" />
|
<param name="testng.classpath" value="testng.gatk.releasetest.classpath" />
|
||||||
</antcall>
|
</antcall>
|
||||||
|
|
@ -983,7 +983,7 @@
|
||||||
</antcall>
|
</antcall>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="alltests.queue.packagejar" depends="init.buildpublic,queue">
|
<target name="releasetests.queue.packagejar" depends="init.buildpublic,queue">
|
||||||
<antcall target="package" inheritAll="false">
|
<antcall target="package" inheritAll="false">
|
||||||
<param name="executable" value="Queue" />
|
<param name="executable" value="Queue" />
|
||||||
</antcall>
|
</antcall>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue