dongzilu0178 2019-01-31 01:43
浏览 345
已采纳

Composer找不到配置文件 - 在Windows上使用Jenkins

I have an Ant build script that is trying to execute Composer install but I get this error when executed through Jenkins:

     [exec] Composer could not find the config file: C:\ProgramData\ComposerSetup\bin
     [exec] To initialize a project, please create a composer.json file as described in the https://getcomposer.org/ "Getting Started" section
     [exec] Result: 1
     [echo] composer update complete

Here is the target from Ant:

<target name="self-update"
        if="composer.self-update"
        unless="composer.installed"
        description="Self-update Composer">
    <echo message="Self-updating composer" level="debug"/>
    <exec executable="${composer.phar}">
        <arg value="self-update" />
        <arg value="--quiet" />
        <arg value="--no-interaction" />
    </exec>
    <echo message="composer self-update complete" level="debug"/>
</target>

However, this works fine when running the Ant build locally.

Some people say to delete the environment variables that the composer installer sets; however it does not seem to change anything.

  • 写回答

1条回答 默认 最新

  • dongmi5177 2019-02-12 14:01
    关注

    There was an environment variable named COMPOSER that was set to C:\ProgramData\ComposerSetup\bin. The variable was not visible through the Environment Variables control panel.

    I could work around this by setting the env key="composer" to "".

    <target name="composer"
            depends="init, self-install, self-update"
            if="composer.run">
        <condition property="composer.command" value="update" else="install">
            <available file="${composer.lock}"/>
        </condition>
        <echo message="Beginning composer ${composer.command}" level="debug"/>
        <exec executable="php">
            <env key="composer" value=""/>
            <arg value="${composer.phar}"/>
            <arg value="${composer.command}"/>
            <arg value="--verbose"/>
            <arg value="--no-interaction"/>
            <arg value="--optimize-autoloader"/>
            <arg value="--prefer-dist"/>
        </exec>
        <echo message="composer ${composer.command} complete" level="debug"/>
    </target>
    

    It's also possible set it to composer.json.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 安装svn网络有问题怎么办
  • ¥15 Python爬取指定微博话题下的内容,保存为txt
  • ¥15 vue2登录调用后端接口如何实现
  • ¥65 永磁型步进电机PID算法
  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥15 latex怎么处理论文引理引用参考文献