1
我基本上想在新添加的repo中運行npm install和grunt build命令。如何在大廳管道中運行一個小命令?
inputs:
- name: repo
- path:
run:
path: repo/
args:
- npm install
- grunt build
我基本上想在新添加的repo中運行npm install和grunt build命令。如何在大廳管道中運行一個小命令?
inputs:
- name: repo
- path:
run:
path: repo/
args:
- npm install
- grunt build
path:
指向容器中要執行的二進制/腳本的路徑。
看看這個例子在任務文檔瀏覽:http://concourse.ci/running-tasks.html#section_task-anatomy
run:
path: sh
args:
- -exc
- |
whoami
env
sh
是執行程序,並args
傳遞給sh
程序