AWS Sam 包命令在构建规范期间失败

AWS Sam package command failing during buildspec

我正在尝试 package/deploy 我的 AWS SAM Lambda 函数是用 dotnet 核心编写的。我有 3 个文件:

pipeline.yml 是创建 CodeBuild 项目的 CloudFormation 模板,设置环境变量,并将 GitHub webhook 连接到特定的 buildspec.yml文件。

buildspec.yml 安装所需的包,调用 dotnet lambda 包生成包含 .Net 打包应用程序的压缩文件。然后调用 sam package 和 sam deploy,这应该用新代码库更新 Lambda 函数。

template.yml 包含由 sam 命令打包和部署的 Lambda 函数的代码。

这是我的 pipeline.yml 代码:

AWSTemplateFormatVersion: "2010-09-09"

Parameters: [REMOVED FOR BREVITY]

Resources:
    CodeBuildProject:
        Type: AWS::CodeBuild::Project
        Properties:
            Environment:
                Image: aws/codebuild/dot-net:core-2.1
                EnvironmentVariables:
                    -   Name: S3_DEPLOYMENT_BUCKET ...
                    -   Name: FOLDER ...
                    -   Name: REPO_NAME ...
                    -   Name: ZIPPED_APPLICATION ...
            Name: RoiCalculator-EventPublisher-Master
            Source:
                BuildSpec: RoiCalculator.Serverless.EventPublisher/buildspec.yml
                Location: https://github.com/XXXXXXXXX/RoiCalculator.EventStore
                Type: GITHUB
            Triggers:
                Webhook: true
                FilterGroups:
                    - - Type: EVENT
                        Pattern: PUSH
                      - Type: FILE_PATH
                        Pattern: !Sub ${GitHubTargetName}
                        ExcludeMatchedPattern: false

这是我的 buildspec.yml 文件:

version: 0.2
phases:
    install:
        runtime-versions:
            dotnet: 2.2
        commands:
            - export PATH="$PATH:/root/.dotnet/tools"
            - dotnet tool install -g Amazon.Lambda.Tools
            - pip install aws-sam-cli
    pre_build:
        commands:
            - dotnet restore
    build:
        commands:
            - cd $FOLDER
            - dotnet lambda package --configuration release --framework netcoreapp2.1 -o ./$ZIPPED_APPLICATION
            - sam package --template-file template.yml --s3-bucket $S3_DEPLOYMENT_BUCKET --output-template-file packaged-template.yml --region us-east-2
            - sam deploy --template-file packaged-template.yml --stack-name event-publisher-app --capabilities CAPABILITY_IAM --region us-east-2

这是我的 template.yml 文件:

AWSTemplateFormatVersion: '2010-09-09'
Transform: 'AWS::Serverless-2016-10-31'

Resources:
    EventPublisherLambda:
        Type: AWS::Serverless::Function
        Properties:
            FunctionName: $REPO_NAME
            Handler: RoiCalculator.Serverless.EventPublisher::RoiCalculator.Serverless.EventPublisher.Function::FunctionHandler
            Role: 
                Fn::ImportValue: 
                    global-lambda-function-execution-arn
            CodeUri: ./$ZIPPED_APPLICATION
            Runtime: dotnetcore2.1

我在 CodeBuild 输出中收到此错误:

[Container] 2019/10/01 05:15:48 Phase complete: BUILD State: FAILED 
[Container] 2019/10/01 05:15:48 Phase context status code: COMMAND_EXECUTION_ERROR Message: Error while executing command: sam package --template-file template.yml --s3-bucket $S3_DEPLOYMENT_BUCKET --output-template-file packaged-template.yml --region us-east-2. Reason: exit status 1 

除了通过 pip 之外,还有其他方法可以在 buildspec 中安装 aws-sam-cli 吗?我的技术是 dotnet 核心。是否有特定于 dotnet 的方法来安装 aws-sam-cli?

注意: 如果我将 sam package/deploy 命令替换为 aws s3 cp $ZIPPED_APPLICATION s3://$S3_DEPLOYMENT_BUCKET/$ZIPPED_APPLICATION,则该过程有效。所以,这似乎不是环境变量的问题。

我完全不知道如何让 sam package/deploy 与 dotnet 核心应用程序一起工作。感谢任何帮助。

'sam package' 是 'aws cloudformation package' 的别名,'sam deploy' 是 'aws cloudformation deploy' 的别名。如果您遇到问题 installing/using SAM cli,您可以尝试使用 'aws cloudformation ...' 命令代替这些操作。

[1] https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/sam-cli-command-reference-sam-deploy.html

[2] https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/sam-cli-command-reference-sam-package.html