-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildspec.yml
31 lines (30 loc) · 1.31 KB
/
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
version: 0.2
phases:
install:
runtime-versions:
nodejs: 10
dotnet: 3.1
dotnet: 2.1
pre_build:
commands:
- cd ./src/RichardGrace.com/RichardGrace.com && npm i && cd ../../..
- cd ./src/AndrewHelen.com/AndrewHelen.com && npm i && cd ../../..
- cd ./src/Nordicsoft.events/NordicSoftEvents && npm i && cd ../../..
- cd ./src/Dalystudio.biz/Dalystudio.biz && npm i && cd ../../..
- cd ./src/Nordicsoft_ee/Nordicsoft_ee && npm i && cd ../../..
build:
commands:
- cd ./src/RichardGrace.com/RichardGrace.com && npm run buildspec_script && cd ../../..
- cd ./src/AndrewHelen.com/AndrewHelen.com && npm run buildspec_script && cd ../../..
- cd ./src/Nordicsoft.events/NordicSoftEvents && npm run buildspec_script && cd ../../..
- cd ./src/Dalystudio.biz/Dalystudio.biz && npm run buildspec_script && cd ../../..
- cd ./src/Nordicsoft_ee/Nordicsoft_ee && npm run buildspec_script && cd ../../..
artifacts:
files:
- src/RichardGrace.com/RichardGrace.com/build_output/**/*
- src/AndrewHelen.com/AndrewHelen.com/build_output/**/*
- src/Nordicsoft.events/NordicSoftEvents/build_output/**/*
- src/Dalystudio.biz/Dalystudio.biz/build_output/**/*
- src/Nordicsoft_ee/Nordicsoft_ee/build_output/**/*
- scripts/**/*
- appspec.yml