-
Notifications
You must be signed in to change notification settings - Fork 0
200 lines (157 loc) · 4.42 KB
/
app.yaml
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
name: Python Checks
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches:
- main
- 'v*'
tags:
- 'v*'
jobs:
ts_pipeline:
name: Node CI Pipeline
runs-on: ubuntu-latest
strategy:
matrix:
node: [16]
env:
ENV: CI
steps:
- uses: actions/checkout@v2
- name: Install node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Cache node modules
uses: actions/cache@v3
with:
path: ui/node_modules/
key: v1-${{ matrix.node }}-${{ hashFiles('ui/yarn.lock') }}
- name: Yarn Install
run: |
make install-ts
- name: Unused exports (ts)
run: |
make ts-unused
- name: Lint Code (ts)
run: |
make lint-ts
- name: Test Code (ts)
run: |
make test-ts
- name: Test Build (ts)
run: |
make ts-build
lints_pipeline:
name: Lints CI Pipeline
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.11']
env:
ENV: CI
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: 'pip'
- name: Install dependencies
run: |
make install PYTHON=python
- name: Lint Code (use uppercase TODO, XXX, FIXME, NOTE and explain nopep8)
run: |
make lint-comment
- name: Lint Code (sort requirements)
run: |
make lint-requirements
- name: Lint Code (requirements complete)
run: |
make requirements-complete
- name: Lint Code (use f"" style formating)
run: |
make lint-stringformat
- name: Lint Code (indent in fours)
run: |
make lint-indent
- name: Lint Code (no f"a", "{a}", or f'{a}')
run: |
make lint-forgottenformat PYTHON=python
- name: Only pyi in stubs
run: |
make lint-pyi
- name: Lint Code (missing trailing comma)
run: |
make lint-flake8
- name: Lint Code (pycodestyle)
run: |
make lint-pycodestyle
- name: Lint Code (type-check)
run: |
make lint-type-check
- name: Lint Code (pylint)
run: |
make lint-pylint
deploy_pipeline_v2:
name: Deploy
needs: [lints_pipeline, ts_pipeline] # , tests_pipeline
if: startsWith(github.ref, 'refs/tags/v2')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Docker login
uses: azure/docker-login@v1
with:
login-server: acclabdocker.azurecr.io
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Set env
run: echo "IMAGE_TAG=$(make -s name)" >> $GITHUB_ENV
- name: Build docker image
run: |
make -s build
env:
CONFIG_PATH: "-"
- name: Push docker image
run: |
make -s dockerpush
# - name: Login via Azure CLI
# uses: azure/login@v1
# with:
# creds: ${{ secrets.AZURE_CREDENTIALS }}
# - name: Azure CLI script
# uses: azure/CLI@v1
# with:
# azcliversion: 2.30.0
# inlineScript: |
# az webapp create --resource-group ${{ secrets.AZURE_RESOURCE_GROUP }} --plan ${{ secrets.AZURE_SERVICE_PLAN }} --name 'acclabs-nlpapi' --multicontainer-config-type compose --multicontainer-config-file $GITHUB_WORKSPACE/docker-compose.yml
deploy_pipeline:
name: Deploy
needs: lints_pipeline # , tests_pipeline
if: startsWith(github.ref, 'refs/tags/v1')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Docker login
uses: azure/docker-login@v1
with:
login-server: acclabdocker.azurecr.io
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Set env
run: echo "IMAGE_TAG=$(make -s name)" >> $GITHUB_ENV
- name: Build docker image
run: |
make -s build
env:
CONFIG_PATH: "-"
- name: Push docker image
run: |
make -s dockerpush
- uses: azure/webapps-deploy@v2
with:
app-name: 'nlpapi'
publish-profile: ${{ secrets.AZURE_WEBAPP_LEGACY_PUBLISH_PROFILE }}
images: 'acclabdocker.azurecr.io/smartsearch:${{ env.IMAGE_TAG }}'