是否有一種方法可以動態地在「調用Ant」構建步驟中調用Ant目標?假設你有一個build.xml:在Jenkins中動態調用Ant目標
<target name="1" description="1">
<exec executable="${RES_DIR}/1.sh" failonerror="true">
</exec>
</target>
<target name="2" description="2">
<exec executable="${RES_DIR}/2.sh" failonerror="true">
</exec>
</target>
<target name="3" description="3">
<exec executable="${RES_DIR}/3.sh" failonerror="true">
</exec>
</target>
,並希望建立詹金斯向所有使用相同的build.xml文件,而是要能夠調用某些目標爲每個製作。我不想在每次需要創建項目時對這些目標進行硬編碼,因爲我希望它自動完成。這是可能的,還是你必須事先創建一個項目並手動設置你的Ant目標?
我將在哪裏設置屬性runx? – gjw80
在詹金斯的配置 –