According to the docs, at the time of writing this, the AMI used in the AWS Lambda runtime is amzn-ami-hvm-2017.03.1.20170812-x86_64-gp2
.
Some Lambda functions depend on statically linked, compiled, native binaries and it is recommended to build these binaries on the same AMIs that are used by Lambda.
Are there any executor types that correspond to these AMIs that can be used in a CI/CD pipeline for building these binaries?
Thanks.