-
Notifications
You must be signed in to change notification settings - Fork 1
363 lines (325 loc) · 12 KB
/
ci.yml
File metadata and controls
363 lines (325 loc) · 12 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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
name: 'Build (Dev)'
on:
push:
branches:
- master
workflow_dispatch:
jobs:
get-version-number:
runs-on: ubuntu-latest
outputs:
VERSION: ${{ steps.get_version.outputs.VERSION }}
SUB_VERSION: ${{ steps.get_version.outputs.SUB_VERSION }}
steps:
- name: "Checkout"
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: "Setup Python"
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: "Get version number"
id: get_version
run: |
pip install toml
# 获取基础版本号
BASE_VERSION=$(python -c "import version; print(version.VERSION)")
echo "Base version: $BASE_VERSION"
# 获取最近的标签
LATEST_TAG=$(git describe --tags --abbrev=0 2>/dev/null || echo "v0.0.0")
echo "Latest tag: $LATEST_TAG"
# 计算从标签到当前 HEAD 的提交数量
SUB_VER=$(git rev-list --no-merges --count "$LATEST_TAG"..HEAD 2>/dev/null || echo "0")
echo "Sub version: $SUB_VER"
# 组合完整版本号
FULL_VERSION="${BASE_VERSION}.${SUB_VER}"
echo "Full version: $FULL_VERSION"
echo "VERSION=$FULL_VERSION" >> $GITHUB_OUTPUT
echo "SUB_VERSION=$SUB_VER" >> $GITHUB_OUTPUT
build-windows:
needs: get-version-number
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
arch: [x64]
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Setup Python"
uses: actions/setup-python@v5
with:
python-version: '3.12'
architecture: ${{ matrix.arch }}
- name: "Setup Poetry"
uses: snok/install-poetry@v1
with:
version: latest
virtualenvs-create: true
virtualenvs-in-project: true
- name: "Install dependencies"
shell: bash
run: |
poetry install --all-groups
- name: "Build with Nuitka"
shell: bash
run: |
poetry run python -m nuitka \
--standalone \
--onefile \
--include-package=discord \
--include-package=websockets \
--include-package=aiosqlite \
--include-package=sqlalchemy.engine \
--include-package=sqlalchemy.sql \
--include-package=sqlalchemy.orm \
--include-package=sqlalchemy.ext.asyncio \
--include-package=sqlalchemy.dialects.sqlite \
--include-package=fastapi \
--include-package=uvicorn \
--include-package=httpx \
--include-package=toml \
--include-package=starlette \
--include-package=pydantic \
--include-package=anyio \
--nofollow-import-to=sqlalchemy.dialects.postgresql \
--nofollow-import-to=sqlalchemy.dialects.mysql \
--nofollow-import-to=sqlalchemy.dialects.oracle \
--nofollow-import-to=sqlalchemy.dialects.mssql \
--nofollow-import-to=sqlalchemy.dialects.firebird \
--nofollow-import-to=sqlalchemy.dialects.sybase \
--nofollow-import-to=aiohttp.test_utils \
--nofollow-import-to=unittest \
--nofollow-import-to=test \
--nofollow-import-to=tests \
--nofollow-import-to=pytest \
--include-data-files=pyproject.toml=pyproject.toml \
--output-dir=build \
--output-filename=onedisc.exe \
--lto=no \
--jobs=1 \
--windows-icon-from-ico=icon.ico \
--windows-console-mode=force \
--assume-yes-for-downloads \
main.py
- name: "List build output"
shell: bash
run: |
echo "Build directory contents:"
ls -la build/ || true
find build -type f -name "*.exe" 2>/dev/null || true
- name: "Rename application"
shell: pwsh
run: |
$exeFile = Get-ChildItem -Path "build" -Filter "*.exe" -Recurse | Select-Object -First 1
if ($exeFile) {
$destPath = "build\onedisc-windows-${{ matrix.arch }}.exe"
Move-Item -Path $exeFile.FullName -Destination $destPath -Force
Write-Host "Moved $($exeFile.Name) to $destPath"
} else {
Write-Host "Error: No exe file found in build directory"
Get-ChildItem -Path "build" -Recurse
exit 1
}
- name: "Upload build"
uses: actions/upload-artifact@v4
with:
name: OneDisc-${{ needs.get-version-number.outputs.VERSION }}-windows-${{ matrix.arch }}
path: build/onedisc-windows-${{ matrix.arch }}.exe
build-linux:
needs: get-version-number
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
arch: [x64]
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Setup Python"
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: "Setup Poetry"
uses: snok/install-poetry@v1
with:
version: latest
virtualenvs-create: true
virtualenvs-in-project: true
- name: "Install system dependencies"
run: |
sudo apt-get update
sudo apt-get install -y patchelf ccache libffi-dev
- name: "Install dependencies"
run: |
poetry install --all-groups
- name: "Build with Nuitka"
run: |
poetry run python -m nuitka \
--standalone \
--onefile \
--include-package=discord \
--include-package=websockets \
--include-package=aiosqlite \
--include-package=sqlalchemy.engine \
--include-package=sqlalchemy.sql \
--include-package=sqlalchemy.orm \
--include-package=sqlalchemy.ext.asyncio \
--include-package=sqlalchemy.dialects.sqlite \
--include-package=fastapi \
--include-package=uvicorn \
--include-package=httpx \
--include-package=toml \
--include-package=starlette \
--include-package=pydantic \
--include-package=anyio \
--nofollow-import-to=sqlalchemy.dialects.postgresql \
--nofollow-import-to=sqlalchemy.dialects.mysql \
--nofollow-import-to=sqlalchemy.dialects.oracle \
--nofollow-import-to=sqlalchemy.dialects.mssql \
--nofollow-import-to=sqlalchemy.dialects.firebird \
--nofollow-import-to=sqlalchemy.dialects.sybase \
--nofollow-import-to=aiohttp.test_utils \
--nofollow-import-to=unittest \
--nofollow-import-to=test \
--nofollow-import-to=tests \
--nofollow-import-to=pytest \
--include-data-files=pyproject.toml=pyproject.toml \
--output-dir=build \
--output-filename=onedisc \
--lto=no \
--assume-yes-for-downloads \
--static-libpython=no \
main.py
- name: "List build output"
run: |
echo "Build directory contents:"
ls -la build/ || true
find build -type f -executable 2>/dev/null || true
- name: "Rename application"
run: |
# 查找生成的可执行文件
EXE_FILE=$(find build -maxdepth 1 -type f -executable | head -n 1)
if [ -n "$EXE_FILE" ]; then
mv "$EXE_FILE" build/onedisc-linux-${{ matrix.arch }}
chmod +x build/onedisc-linux-${{ matrix.arch }}
echo "Moved $EXE_FILE to build/onedisc-linux-${{ matrix.arch }}"
else
echo "Error: No executable file found in build directory"
ls -la build/
exit 1
fi
- name: "Upload build"
uses: actions/upload-artifact@v4
with:
name: OneDisc-${{ needs.get-version-number.outputs.VERSION }}-linux-${{ matrix.arch }}
path: build/onedisc-linux-${{ matrix.arch }}
build-macos:
needs: get-version-number
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
include:
- arch: x64
python-arch: x64
- arch: arm64
python-arch: arm64
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Setup Python"
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: "Setup Poetry"
uses: snok/install-poetry@v1
with:
version: latest
virtualenvs-create: true
virtualenvs-in-project: true
- name: "Install dependencies"
run: |
poetry install --all-groups
- name: "Build with Nuitka"
run: |
poetry run python -m nuitka \
--standalone \
--onefile \
--include-package=discord \
--include-package=websockets \
--include-package=aiosqlite \
--include-package=sqlalchemy.engine \
--include-package=sqlalchemy.sql \
--include-package=sqlalchemy.orm \
--include-package=sqlalchemy.ext.asyncio \
--include-package=sqlalchemy.dialects.sqlite \
--include-package=fastapi \
--include-package=uvicorn \
--include-package=httpx \
--include-package=toml \
--include-package=starlette \
--include-package=pydantic \
--include-package=anyio \
--nofollow-import-to=sqlalchemy.dialects.postgresql \
--nofollow-import-to=sqlalchemy.dialects.mysql \
--nofollow-import-to=sqlalchemy.dialects.oracle \
--nofollow-import-to=sqlalchemy.dialects.mssql \
--nofollow-import-to=sqlalchemy.dialects.firebird \
--nofollow-import-to=sqlalchemy.dialects.sybase \
--nofollow-import-to=aiohttp.test_utils \
--nofollow-import-to=unittest \
--nofollow-import-to=test \
--nofollow-import-to=tests \
--nofollow-import-to=pytest \
--include-data-files=pyproject.toml=pyproject.toml \
--output-dir=build \
--output-filename=onedisc \
--lto=no \
--assume-yes-for-downloads \
main.py
- name: "List build output"
run: |
echo "Build directory contents:"
ls -la build/ || true
find build -type f -perm +111 2>/dev/null || true
- name: "Rename application"
run: |
# 查找生成的可执行文件
EXE_FILE=$(find build -maxdepth 1 -type f -perm +111 ! -name "*.so" ! -name "*.dylib" | head -n 1)
if [ -n "$EXE_FILE" ]; then
mv "$EXE_FILE" build/onedisc-macos-${{ matrix.arch }}
chmod +x build/onedisc-macos-${{ matrix.arch }}
echo "Moved $EXE_FILE to build/onedisc-macos-${{ matrix.arch }}"
else
echo "Error: No executable file found in build directory"
ls -la build/
exit 1
fi
- name: "Upload build"
uses: actions/upload-artifact@v4
with:
name: OneDisc-${{ needs.get-version-number.outputs.VERSION }}-macos-${{ matrix.arch }}
path: build/onedisc-macos-${{ matrix.arch }}
deploy-docs:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Set up Node.js"
uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org/'
- name: "Install requirements"
run: |
npm install
- name: "Build Documents"
run: |
npm run docs:build
- name: "Deploy to GitHub Pages"
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/.vitepress/dist/