NANT 中存在 svn 的等效项

发布于 2024-12-09 10:46:55 字数 506 浏览 0 评论 0原文

如果 SVN url 已经存在,我需要使 nant 构建失败。本质上,我正在停止从已发布的代码进行进一步构建。在 ANT 中我会运行

    <if>
        <svnExists target="svn url"  refid="svn.settings"/>
        <then>
            <fail>Can not give this build to QA - this number was already released to Operations</fail>
        </then>
        <else>
            <echo message="good to go"/>
        </else>
    </if>

但我找不到对 NANT 执行此操作的等效方法,我需要在该项目中使用它。有想法吗?

I need to fail a nant build if an SVN url already exists. Essentially I am stopping further builds from released code. In ANT I would run

    <if>
        <svnExists target="svn url"  refid="svn.settings"/>
        <then>
            <fail>Can not give this build to QA - this number was already released to Operations</fail>
        </then>
        <else>
            <echo message="good to go"/>
        </else>
    </if>

But I can't find an equivalent way of doing this for NANT, which I need to use for this project. Ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小嗷兮 2024-12-16 10:46:55

您可以使用 svn 程序和 exec 任务来完成此操作。

<exec program="svn" resultproperty="zero_if_url_exists.prop" failonerror="false">
   <arg value="info"/>
   <arg value="http://my.svn.server/branches/foobar"/>
</exec>

<if test="${int::parse(zero_if_url_exists.prop) == 0}">
    <echo message="The url exists."/>
</if>
<if test="${int::parse(zero_if_url_exists.prop) != 0}">
    <echo message="The url doesn't exist."/>
</if>

You can do it with the svn program and the exec task.

<exec program="svn" resultproperty="zero_if_url_exists.prop" failonerror="false">
   <arg value="info"/>
   <arg value="http://my.svn.server/branches/foobar"/>
</exec>

<if test="${int::parse(zero_if_url_exists.prop) == 0}">
    <echo message="The url exists."/>
</if>
<if test="${int::parse(zero_if_url_exists.prop) != 0}">
    <echo message="The url doesn't exist."/>
</if>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文