AWS CodePloy管道示例存储库:“未找到bash:zip:命令”

时间:2019-12-05 06:04:04

标签: aws-code-deploy bitbucket-pipelines

我试图遵循Deploy to AWS with CodeDeploy的说明

并使用了bitbucket-pipelines.yml

但是我遇到了这个错误:

Task t = Task.Run( () => {} ); 
TimeSpan ts = TimeSpan.FromMilliseconds(150);
if (! t.Wait(ts))
Console.WriteLine("The timeout interval elapsed.");

我能做些什么吗?

2 个答案:

答案 0 :(得分:1)

将此添加到您的bitbucket-pipelines.yml

- apt-get update
- apt-get install -y zip

之前
- cd app && zip -r ../myapp.zip *

答案 1 :(得分:1)

在示例存储库中,将docker映像配置为bitbucket-pipelines.yml中的atlassian / default-image:2

image: atlassian/default-image:2

如果您使用另一个docker映像运行管道,则zip CLI可能会丢失,您需要自行安装。