Skip to content

Fixed #367 #368 #369, add condition for zstack-network and zstack-distro #372

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions zstackbuild/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,18 @@
<echo message="successfully build zstack.war at ${war.file}" />
</target>

<target name="build-zstack-network-on-condition" if="${build.zstack.network}">
<antcall target="build-zstack-network" />
</target>

<target name="assemble-zstack-network-on-condition" if="${build.zstack.network}">
<antcall target="assemble-zstack-network" />
</target>

<target name="check-zstack-distro-on-condition" if="${check.zstack.distro}">
<antcall target="check-zstack-distro" />
</target>

<!-- For UI 1.x -->
<target name="build-zstack-dashboard-on-condition" unless="${build.zstack.ui.war}">
<antcall target="build-zstack-dashboard" />
Expand Down Expand Up @@ -276,10 +288,10 @@
<antcall target="build-zstack-vyos"/>
</sequential>
<sequential>
<antcall target="build-zstack-network"/>
<antcall target="build-zstack-network-on-condition"/>
</sequential>
<sequential>
<antcall target="check-zstack-distro"/>
<antcall target="check-zstack-distro-on-condition"/>
</sequential>
</parallel>
</target>
Expand Down Expand Up @@ -353,7 +365,7 @@
<antcall target="assemble-zstack-vyos"/>
</sequential>
<sequential>
<antcall target="assemble-zstack-network"/>
<antcall target="assemble-zstack-network-on-condition"/>
</sequential>
</parallel>

Expand Down