-
Notifications
You must be signed in to change notification settings - Fork 2
/
bitbucket-pipelines.yml
100 lines (99 loc) · 2.63 KB
/
bitbucket-pipelines.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
image: node:10.15.3
options:
max-time: 15
definitions:
caches:
node-g: /usr/local/lib/node_modules
git-modules: .git/modules
services:
mongo:
image: mongo:3.6.8
steps:
- step: &step-lint-spell
name: Lint Spelling
caches:
- node
- git-modules
artifacts:
- build/**
script:
- git submodule init
- git config submodule.src/lib.url $GIT_SUBMODULE_LIB
- git submodule update
- npm i
- npm run lint:spell:all
- step: &step-build-prod
name: Build Prod
caches:
- node
- git-modules
artifacts:
- build/**
- assets/**
script:
- git submodule init
- git config submodule.src/lib.url $GIT_SUBMODULE_LIB
- git submodule update
- npm i
- npm run build:prod
- step: &step-test-local
name: Test (Local MongoDB)
caches:
- node
- node-g
- git-modules
artifacts:
- build/**
- assets/**
- test-results/**
- coverage/**
services:
- mongo
script:
- git submodule init
- git config submodule.src/lib.url $GIT_SUBMODULE_LIB
- git submodule update
- npm i
- npm run postinstall
- npm run test:ci
- step: &step-deploy-test
name: Deploy to B4A (Test)
deployment: Test
script:
- npm i flags node-flags mkdirp ncp
- mv build _build
- node scripts/b4a-cli-setup --key=$B4A_ACCOUNT_KEY --project="$B4A_PROJECT_NAME"
- cp -r _build/** build
- node scripts/deploy --b4a
pipelines:
custom:
deploy-to-test: &pipe-deploy-test
- step: *step-build-prod
- parallel:
- step: *step-lint-spell
- step: *step-test-local
- step: *step-deploy-test
deploy-to-staging: &pipe-deploy-staging
- step: *step-build-prod
- parallel:
- step: *step-lint-spell
- step: *step-test-local
- step:
<<: *step-deploy-test
name: Deploy to B4A (Staging)
deployment: Staging
deploy-to-production: &pipe-deploy-prod
- step: *step-build-prod
- parallel:
- step: *step-lint-spell
- step: *step-test-local
- step:
<<: *step-deploy-test
name: Deploy to B4A (Live)
deployment: Production
branches:
feature/*: *pipe-deploy-test
bugfix/*: *pipe-deploy-test
hotfix/*: *pipe-deploy-test
release/*: *pipe-deploy-test
stable: *pipe-deploy-prod