-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildspec.yml
18 lines (18 loc) · 867 Bytes
/
buildspec.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
version: 0.2
phases:
install:
commands:
- cd util/sns-subscription-filter-policy-string && make init && cd -
- cd pipelines/event-storage-backup-pipeline && make init && cd -
- cd pipelines/event-search-analytics-pipeline && make init && cd -
- cd pipelines/event-replay-pipeline && make init && cd -
- cd examples/ecommerce-app/checkout-pipeline && make init && cd -
- cd examples/ecommerce-app/checkout-api && make init && cd -
build:
commands:
- cd util/sns-subscription-filter-policy-string && make && cd -
- cd pipelines/event-storage-backup-pipeline && make && cd -
- cd pipelines/event-search-analytics-pipeline && make && cd -
- cd pipelines/event-replay-pipeline && make && cd -
- cd examples/ecommerce-app/checkout-pipeline && make && cd -
- cd examples/ecommerce-app/checkout-api && make && cd -