This repository has been archived by the owner on Mar 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
azure-pipelines.yml
175 lines (136 loc) · 3.87 KB
/
azure-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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
# Build numbering format
name: $(BuildID)
pool:
vmImage: 'ubuntu-latest'
# Trigger
# -------
trigger:
branches:
include:
- main
- feat/*
- refactor/*
- release
# ---------
# Schedule
# ---------
schedules:
- cron: "0 0 * * Mon"
displayName: Weekly midnight build
always: true
branches:
include:
- main
- releases/*
# Shared Templates
# ----------------
resources:
repositories:
- repository: templates
type: github
name: julie-ng/azure-pipelines-templates
endpoint: julie-ng # required, even if public repo
ref: refs/tags/v1.2.0
# Variables
# ---------
variables:
- group: newton-common-vars
- name: app-name
value: newton-demo
- name: image-tag
value: 'dev'
- name: image-name
value: julieio/newtonjs-demo
- name: registry-connection
value: docker-hub-julieio-connection
- name: is-dev
value: ${{ eq(variables['Build.SourceBranch'], 'refs/heads/main') }}
- name: is-release
value: ${{ and(eq(variables['Build.SourceBranch'], 'refs/heads/release'), ne(variables['Build.Reason'], 'Schedule')) }}
- name: continue-not-pr
value: ${{ ne(variables['Build.Reason'], 'PullRequest') }}
# ------
# Stages
# ------
stages:
# Tests
# -----
- stage: CI
displayName: 'Test'
jobs:
- job: Audit
steps:
- script: npm audit --audit-level=moderate
displayName: Audit Dependencies (all)
continueOnError: true
- script: npm audit --production --audit-level=moderate
displayName: Audit Dependencies (prod-only)
continueOnError: false
- job: Linter
steps:
- script: npm ci && npm run lint
displayName: Lint Code
- job: Tests
steps:
- script: npm ci && npm run test
displayName: Unit Tests
# Docker: Build and Push
# ----------------------
# --- Stage: Build and Push Docker image ---
- stage: BuildImage
displayName: 'Build (Docker)'
condition: ${{ variables['continue-not-pr'] }}
jobs:
- job: build_and_push
displayName: 'Build and Push Image'
steps:
# 1
- script: npm install
displayName: 'NPM: install'
# 2
- script: npm run build
displayName: 'NPM: build library'
# 3
- script: npm run demo:build
displayName: 'NPM: build demo'
# 4 - of release, use versioned image tag
- template: steps/set-custom-variable.yml@templates
parameters:
condition: ${{ variables['is-release'] }}
variableName: image-tag
command: 'npm run --silent my-version'
# 5 - buld and push images only main or release
- template: steps/docker-build-push.yml@templates
parameters:
condition: ${{ or(variables['is-dev'], variables['is-release']) }}
registryConnectionName: $(registry-connection)
imageName: $(image-name)
tagsAsMultilineString: |
$(image-tag)
# --- Stage: deploy to Azure App Services ---
- stage: DeployImage
displayName: Deploy
condition: ${{ variables['continue-not-pr'] }}
jobs:
- job: deploy_dev
displayName: 'Deploy (dev)'
condition: ${{ variables['is-dev'] }}
steps:
- template: steps/deploy-app-service.yml@templates
parameters:
ARMConnectionName: $(lib-arm-connection)
dockerImage: $(image-name):$(image-tag)
appName: $(app-name)-dev # with `-dev` suffix
- job: deploy_release
displayName: 'Deploy (release)'
condition: ${{ variables['is-release'] }}
steps:
- template: steps/set-custom-variable.yml@templates
parameters:
variableName: image-tag
command: 'npm run --silent my-version'
- template: steps/deploy-app-service.yml@templates
parameters:
ARMConnectionName: $(lib-arm-connection)
dockerImage: $(image-name):$(image-tag)
appName: $(app-name)