从另一个目录

时间:2017-11-20 20:26:49

标签: amazon-web-services serverless-framework aws-codecommit aws-codebuild

这是我的根文件夹,我想将AWS Lambda函数部署到Backend文件夹中的codecommit。

enter image description here

因此我写了这个命令,但AWS CodeBuild给出了这个错误(此命令只能在无服务器服务目录中运行)。

version: 0.1

phases:
    install:
        commands:
            - npm install -g serverless@1.20.2
    post_build:
        commands:
            - cd Backend
            - serverless deploy --region eu-west-1 --verbose 

如何从后端文件夹部署它?

编辑:我忘记编辑版本了。现在我将其更改为版本:0.2并且工作正常。

2 个答案:

答案 0 :(得分:1)

可以改为

Thread t1 = new Thread( () -> someMethod(), "Thread1");

答案 1 :(得分:1)

我忘了编辑buildspec.yml的版本。现在我将其更改为版本:0.2并且工作正常。

version: 0.2

phases:
    install:
        commands:
            - npm install -g serverless@1.20.2
    post_build:
        commands:
            - cd Backend
            - serverless deploy --region eu-west-1 --verbose