forked from aws-ia/cloudformation-rollbar-resource-providers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prod-buildspec.yml
32 lines (31 loc) · 910 Bytes
/
prod-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
25
26
27
28
29
30
31
32
version: 0.2
phases:
install:
runtime-versions:
python: 3.7
commands:
- echo Entered the install phase...
- echo About to build $RESOURCE_PATH
- export PATH="/usr/local/bin:$PATH"
- /usr/local/bin/dockerd-entrypoint.sh
- cat /var/log/docker.log
- curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.2/install.sh | bash
- export NVM_DIR="$HOME/.nvm"
- echo "Loading nvm" && [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" && nvm install 14 && nvm install-latest-npm
- npm --version
- node --version
- pwd
- ls
build:
commands:
- echo Entered the build phase...
- npm install && npm run build
- cd $RESOURCE_PATH
- pwd
- ls
- npm install && npm run build
- ./setup.sh
- ../publish-resource-regions.sh
finally:
- cat rpdk.log
- ./cleanup.sh