-
Notifications
You must be signed in to change notification settings - Fork 4
/
alpha-buildspec.yml
45 lines (41 loc) · 1.17 KB
/
alpha-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
33
34
35
36
37
38
39
40
41
42
43
version: 0.2
phases:
install:
runtime-versions:
python: 3.x
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 16 && 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
- TYPE_NAME=$(cat .rpdk-config | jq -r .typeName)
- echo "TYPE_NAME is $TYPE_NAME"
- ./setup.sh
- cfn validate
- cfn generate
- npm install && npm run build
- python ../get_type_configuration.py
- cfn submit --dry-run
- nohup sam local start-lambda &
- sleep 10
- cfn test
finally:
- cat rpdk.log
- ./cleanup.sh
artifacts:
files:
- $BUILD_FILE_NAME
name: extensions-build