-
Notifications
You must be signed in to change notification settings - Fork 13
/
buildspec.yml
24 lines (23 loc) · 980 Bytes
/
buildspec.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#
# AWS Codebuild specifications
# This file is only used for internal deployment of the code on each public commit
# It is NOT needed if you're demoing or developping locally
#
version: 0.2
env:
shell: bash
phases:
install:
commands:
- echo Entered the install phase...
- yum -y install git
build:
commands:
- echo Entered the build phase...
- chmod +x stage.sh
- ./stage.sh template.yaml personalize-solution-staging-us-east-1 personalization-apis/
- ./stage.sh template.yaml personalize-solution-staging-us-east-2 personalization-apis/
- ./stage.sh template.yaml personalize-solution-staging-us-west-2 personalization-apis/
- ./stage.sh template.yaml personalize-solution-staging-eu-west-1 personalization-apis/
- ./stage.sh template.yaml personalize-solution-staging-ap-southeast-2 personalization-apis/
- ./stage.sh template-edge.yaml personalize-solution-staging-us-east-1 personalization-apis-edge/