-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
executable file
·32 lines (26 loc) · 1.11 KB
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/bash
set -e
set -o pipefail
echo '***Start***'
INSTRUCTION="If you want to deploy, try running the script with 'deploy region bucket profile', e.g. 'deploy eu-west-2 solveless-stack-source-code solve-dev-eric'"
if [ $# -eq 0 ]; then
echo "Missing arguments."
echo $INSTRUCTION
exit 1
elif [ "$1" = "deploy" ] && [ $# -eq 4 ]; then
AWS_REGION=$2
BUCKET_NAME=$3
PROFILE=$4
sam build
sam package --template-file ./.aws-sam/build/template.yaml --s3-bucket $BUCKET_NAME --output-template-file ./.aws-sam/build/packaged.yml --region $AWS_REGION --profile $PROFILE
aws cloudformation deploy --template-file ./.aws-sam/build/packaged.yml --stack-name custom-aws-sdk-layer --capabilities CAPABILITY_IAM --region $AWS_REGION --profile $PROFILE
elif [ "$1" = "publish" ] && [ $# -eq 3 ]; then
REGION=$2
BUCKET_NAME=$3
sam build
aws cloudformation package --template-file .aws-sam/build/template.yaml --output-template-file .aws-sam/build/packaged.yml --s3-bucket $BUCKET_NAME --region $REGION
sam publish --template .aws-sam/build/packaged.yml --region $REGION
else
echo $INSTRUCTION
exit 1
fi