GoCD - Angular 构建无法执行

GoCD - Angular Build not able execute

我正在为 Angular 部署配置开发 GoCD 界面。我确实配置了 npm install 但是在我尝试执行如下构建命令之后,它抛出了像

这样的错误

Please make sure [/usr/local/lib/node_modules/@angular/cli/bin/ng build] can be executed on this agent.

命令:

/usr/local/bin/ng build --configuration=qa

查看下面的控制台输出(如果我直接在我的 machine 中执行上面的内容,它就可以工作)。

我已经在本地配置了 GoCD mac。

 [go] Task: "/usr/local/lib/node_modules/@angular/cli/bin/ng build" --configuration=qatook: 0.5s
    Error happened while attempting to execute '/usr/local/lib/node_modules/@angular/cli/bin/ng build --configuration=qa'. 
    Please make sure [/usr/local/lib/node_modules/@angular/cli/bin/ng build] can be executed on this agent.
    
  [Debug Information] Environment variable PATH: /usr/local/mysql/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
    [go] Task status: failed, took: 0.5s
    [go] Current job status: failed

这是我犯的一个愚蠢的错误。 GoCD 在下面的输入字段中提到了它。

基本上,如果它是多个参数,那么我们需要将其放在一个新行中。所以在那之后,它开始正常工作。

所以在我的情况下,就像

build
--configuration=qa

请查看屏幕截图。