-
-
Notifications
You must be signed in to change notification settings - Fork 50
258 lines (221 loc) · 7.62 KB
/
extralit-server.yml
File metadata and controls
258 lines (221 loc) · 7.62 KB
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
name: Build Extralit server package
concurrency:
group: ${{ github.workflow }}-${{ github.sha }}
cancel-in-progress: true
on:
workflow_dispatch:
push:
branches:
- main
- develop
- releases/**
paths:
- "extralit-server/**"
- ".github/workflows/extralit-server.yml"
pull_request:
paths:
- "extralit-server/**"
- ".github/workflows/extralit-server.yml"
permissions:
id-token: write
jobs:
build:
name: Build `extralit-server` package
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
working-directory: extralit-server
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.17.0
ports:
- 9200:9200
env:
discovery.type: single-node
xpack.security.enabled: false
postgres:
image: postgres:14
env:
POSTGRES_HOST: localhost
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: extralit
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
redis:
image: redis
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
minio:
image: lazybit/minio
volumes:
- /data:/data
env:
MINIO_ACCESS_KEY: minioadmin
MINIO_SECRET_KEY: minioadmin
options: --name=minio --health-cmd "curl http://localhost:9000/minio/health/live"
ports:
- 9000:9000
env:
HF_HUB_DISABLE_TELEMETRY: 1
EXTRALIT_S3_ENDPOINT: http://localhost:9000
EXTRALIT_S3_ACCESS_KEY: minioadmin
EXTRALIT_S3_SECRET_KEY: minioadmin
steps:
- name: Checkout Code 🛎
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
pyproject-file: "extralit-server/pyproject.toml"
enable-cache: true
cache-local-path: ~/.cache/uv
cache-dependency-glob: "extralit-server/pdm.lock"
- name: Install PDM
run: uv tool install pdm
- name: Install dependencies
run: |
pdm config use_uv true
pdm config python.install_root "$(uv python dir)"
pdm install --dev
- name: Run tests 📈
id: run-tests
continue-on-error: true
env:
HF_TOKEN_EXTRALIT_INTERNAL_TESTING: ${{ secrets.HF_TOKEN_EXTRALIT_INTERNAL_TESTING }}
run: |
EXTRALIT_DATABASE_URL=postgresql://postgres:postgres@localhost:5432/extralit
EXTRALIT_ELASTICSEARCH=http://localhost:9200
EXTRALIT_SEARCH_ENGINE=elasticsearch
pdm test-cov tests/unit
- name: Upload test coverage
if: always()
uses: codecov/codecov-action@v5.4.3
with:
files: coverage.xml
flags: extralit-server
token: ${{ secrets.CODECOV_TOKEN }}
- name: Check test status
if: steps.run-tests.outcome == 'failure'
run: exit 1
- name: Upload test results to Codecov
if: ${{ !cancelled() }}
uses: codecov/test-results-action@v1
with:
flags: extralit-server
token: ${{ secrets.CODECOV_TOKEN }}
# This section is used to build the frontend and copy the build files to the server.
# In the future, static files should be downloaded after the frontend is built and uploaded as an artifact.
- name: Setup Node.js for frontend dependencies
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install frontend dependencies
working-directory: extralit-frontend
env:
BASE_URL: "@@baseUrl@@"
DIST_FOLDER: ./dist
run: |
npm install
npm run build
# End of frontend build section
- name: Build package
run: |
cp -r ../extralit-frontend/dist src/extralit_server/static
pdm build
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: extralit-server
path: extralit-server/dist
build_docker_images:
name: Build docker images
uses: ./.github/workflows/extralit-server.build-docker-images.yml
if: |
github.ref == 'refs/heads/main'
|| github.ref == 'refs/heads/develop'
|| contains(github.ref, 'releases/')
|| github.event_name == 'workflow_dispatch'
|| (github.event_name == 'pull_request' && !github.event.pull_request.head.repo.fork && !github.event.pull_request.draft && github.event_name == 'workflow_dispatch')
needs:
- build
with:
is_release: ${{ github.ref == 'refs/heads/main' || github.event_name == 'workflow_dispatch' }}
publish_latest: ${{ github.ref == 'refs/heads/main' }}
secrets: inherit
# This job will publish extralit-server python package into PyPI repository
publish_release:
name: Publish Release
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/main' || github.event_name == 'workflow_dispatch' }}
needs:
- build
- build_docker_images
defaults:
run:
shell: bash -l {0}
working-directory: extralit-server
permissions:
# This permission is needed for private repositories.
# contents: read
# IMPORTANT: this permission is mandatory for trusted publishing on PyPI
id-token: write
steps:
- name: Checkout Code 🛎
uses: actions/checkout@v4
- name: Update repo visualizer
uses: githubocto/repo-visualizer@0.7.1
with:
root_path: "extralit-server/"
excluded_paths: "dist,build,node_modules,docs,tests,.swm,assets,.github,package-lock.json,pdm.lock"
excluded_globs: "*.spec.js;**/*.{png,jpg,svg,md};**/!(*.module).ts,**/__pycache__/,**/__mocks__/,LICENSE*,**/.gitignore,**/*.egg-info/,**/.*/"
output_file: "repo-visualizer.svg"
should_push: false
- name: Upload repo visualizer diagram as artifact
uses: actions/upload-artifact@v4
with:
name: repo-visualizer
path: repo-visualizer.svg
retention-days: 10
- name: Download python package
uses: actions/download-artifact@v4
with:
name: extralit-server
path: extralit-server/dist
- name: Setup PDM
uses: pdm-project/setup-pdm@v4
with:
python-version-file: extralit-server/pyproject.toml
cache-dependency-path: extralit-server/pdm.lock
cache: true
- name: Read package info
run: |
PACKAGE_VERSION=$(pdm show --version)
PACKAGE_NAME=$(pdm show --name)
echo "PACKAGE_VERSION=$PACKAGE_VERSION" >> $GITHUB_ENV
echo "PACKAGE_NAME=$PACKAGE_NAME" >> $GITHUB_ENV
echo "$PACKAGE_NAME==$PACKAGE_VERSION"
- name: Publish Package to PyPI test environment 🥪
continue-on-error: true
run: |
pdm publish --no-build --repository testpypi --username __token__ --password ${{ secrets.AR_TEST_PYPI_API_TOKEN }}
- name: Test Installing 🍿
continue-on-error: true
run: |
pip install --index-url https://test.pypi.org/simple --no-deps $PACKAGE_NAME==$PACKAGE_VERSION
- name: Publish Package to PyPI 🥩
if: github.ref == 'refs/heads/main'
run: |
pdm publish --no-build --username __token__ --password ${{ secrets.AR_PYPI_API_TOKEN }}