Jenkins,Ubuntu节点和从属版本无法将项目保存到temp文件夹

时间:2018-06-30 09:28:54

标签: unix jenkins ubuntu-14.04

这是我的代码和错误文本:

export PUBLIC_HOSTNAME=”$(curl http://169.254.169.254/latest/meta-data/public-hostname 2>/dev/null)”
wget https://github.com/RocketChat/Rocket.Chat/archive/master.zip
unzip -o master.zip
cd ./Rocket.Chat-master
meteor build –server $PUBLIC_HOSTNAME –directory .
cd ./bundle/programs/server
npm install
cd ../..


2018-06-30 09:09:07 (3.90 MB/s) - ‘master.zip’ saved [6681014]
+ unzip -o master.zip
/tmp/jenkins6836919479896690199.sh: 12: /tmp/jenkins6836919479896690199.sh: 
unzip: not found         
Build step 'Execute shell' marked build as failure
Finished: FAILURE

因此无法解压缩下载的文件。

有人可以让我朝正确的方向前进吗?


错误:

1 个答案:

答案 0 :(得分:0)

您的詹金斯服务器(主/从)上未安装任何实用程序(解压缩,流星),或者$ PATH变量未正确设置。

如果安装了实用程序,请在ENV PATH变量中包括实用程序路径。如果您需要帮助,请告诉我。