我试图遵循Deploy to AWS with CodeDeploy的说明
但是我遇到了这个错误:
Task t = Task.Run( () => {} );
TimeSpan ts = TimeSpan.FromMilliseconds(150);
if (! t.Wait(ts))
Console.WriteLine("The timeout interval elapsed.");
我能做些什么吗?
答案 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可能会丢失,您需要自行安装。