-
Notifications
You must be signed in to change notification settings - Fork 11
417 lines (366 loc) · 16.8 KB
/
ci-python.yml
File metadata and controls
417 lines (366 loc) · 16.8 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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
name: CI (Python)
on:
push:
pull_request:
jobs:
test-api:
runs-on: ubuntu-latest
timeout-minutes: 90
env:
QWEN_TTS_DEVICE: cpu
QWEN_TTS_DTYPE: float32
QWEN_TTS_ATTN: ""
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v6
with:
version: "latest"
- name: Install system dependencies
run: sudo apt-get update && sudo apt-get install -y ffmpeg
- name: Install dependencies
run: uv sync --project python
- name: Download models
run: |
mkdir -p models
uv run --project python huggingface-cli download Qwen/Qwen3-TTS-12Hz-0.6B-CustomVoice \
--local-dir ./models/Qwen3-TTS-12Hz-0.6B-CustomVoice
uv run --project python huggingface-cli download Qwen/Qwen3-TTS-12Hz-0.6B-Base \
--local-dir ./models/Qwen3-TTS-12Hz-0.6B-Base
uv run --project python huggingface-cli download Qwen/Qwen3-ASR-0.6B \
--local-dir ./models/Qwen3-ASR-0.6B
- name: Create output directory
run: mkdir -p artifacts
# ==================================================================
# Phase 1: Both TTS models loaded
# ==================================================================
- name: "Phase 1: Start server (both TTS models)"
run: |
TTS_CUSTOMVOICE_MODEL_PATH=./models/Qwen3-TTS-12Hz-0.6B-CustomVoice \
TTS_BASE_MODEL_PATH=./models/Qwen3-TTS-12Hz-0.6B-Base \
uv run --project python python python/main.py &
echo $! > /tmp/server.pid
echo "Waiting for server..."
for i in $(seq 1 120); do
if curl -sf http://localhost:8000/health > /dev/null 2>&1; then
echo "Server is ready"
break
fi
sleep 2
done
curl -sf http://localhost:8000/health
- name: "Phase 1: Generate English speech with Vivian"
run: |
curl -sf --max-time 600 -X POST http://localhost:8000/v1/audio/speech \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3-tts",
"input": "Hello, this is Vivian speaking English for the integration test.",
"voice": "Vivian",
"language": "English",
"response_format": "wav"
}' \
--output artifacts/phase1_vivian_english.wav
echo "Generated phase1_vivian_english.wav ($(stat --format=%s artifacts/phase1_vivian_english.wav) bytes)"
- name: "Phase 1: Generate Chinese speech with Vivian"
run: |
curl -sf --max-time 600 -X POST http://localhost:8000/v1/audio/speech \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3-tts",
"input": "你好,这是Vivian的中文语音合成测试。",
"voice": "Vivian",
"language": "Chinese",
"response_format": "wav"
}' \
--output artifacts/phase1_vivian_chinese.wav
echo "Generated phase1_vivian_chinese.wav ($(stat --format=%s artifacts/phase1_vivian_chinese.wav) bytes)"
- name: "Phase 1: Clone English voice from Vivian sample"
run: |
curl -sf --max-time 600 -X POST http://localhost:8000/v1/audio/speech \
-F model=qwen3-tts \
-F "input=This sentence clones the Vivian English voice using audio_sample." \
-F audio_sample=@artifacts/phase1_vivian_english.wav \
-F "audio_sample_text=Hello, this is Vivian speaking English for the integration test." \
-F language=English \
-F response_format=wav \
--output artifacts/phase1_clone_english.wav
echo "Generated phase1_clone_english.wav ($(stat --format=%s artifacts/phase1_clone_english.wav) bytes)"
- name: "Phase 1: Clone Chinese voice from Vivian sample"
run: |
curl -sf --max-time 600 -X POST http://localhost:8000/v1/audio/speech \
-F model=qwen3-tts \
-F "input=这段语音使用了Vivian的中文音频样本进行声音克隆。" \
-F audio_sample=@artifacts/phase1_vivian_chinese.wav \
-F "audio_sample_text=你好,这是Vivian的中文语音合成测试。" \
-F language=Chinese \
-F response_format=wav \
--output artifacts/phase1_clone_chinese.wav
echo "Generated phase1_clone_chinese.wav ($(stat --format=%s artifacts/phase1_clone_chinese.wav) bytes)"
- name: "Phase 1: Stop server"
run: kill "$(cat /tmp/server.pid)" && sleep 2
# ==================================================================
# Phase 2: CustomVoice model only
# ==================================================================
- name: "Phase 2: Start server (CustomVoice only)"
run: |
TTS_CUSTOMVOICE_MODEL_PATH=./models/Qwen3-TTS-12Hz-0.6B-CustomVoice \
uv run --project python python python/main.py &
echo $! > /tmp/server.pid
echo "Waiting for server..."
for i in $(seq 1 120); do
if curl -sf http://localhost:8000/health > /dev/null 2>&1; then
echo "Server is ready"
break
fi
sleep 2
done
curl -sf http://localhost:8000/health
- name: "Phase 2: Generate English speech with Ryan"
run: |
curl -sf --max-time 600 -X POST http://localhost:8000/v1/audio/speech \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3-tts",
"input": "Hello, this is Ryan speaking English with only the CustomVoice model loaded.",
"voice": "Ryan",
"language": "English",
"response_format": "wav"
}' \
--output artifacts/phase2_ryan_english.wav
echo "Generated phase2_ryan_english.wav ($(stat --format=%s artifacts/phase2_ryan_english.wav) bytes)"
- name: "Phase 2: Generate Chinese speech with Ryan"
run: |
curl -sf --max-time 600 -X POST http://localhost:8000/v1/audio/speech \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3-tts",
"input": "你好,这是Ryan的中文语音,仅加载了CustomVoice模型。",
"voice": "Ryan",
"language": "Chinese",
"response_format": "wav"
}' \
--output artifacts/phase2_ryan_chinese.wav
echo "Generated phase2_ryan_chinese.wav ($(stat --format=%s artifacts/phase2_ryan_chinese.wav) bytes)"
- name: "Phase 2: Verify audio_sample returns error"
run: |
status=$(curl -s -o /tmp/response.json -w "%{http_code}" --max-time 30 \
-X POST http://localhost:8000/v1/audio/speech \
-F model=qwen3-tts \
-F "input=This should fail." \
-F audio_sample=@artifacts/phase1_vivian_english.wav \
-F language=English \
-F response_format=wav)
echo "HTTP status: $status"
cat /tmp/response.json
echo
if [ "$status" -ne 400 ]; then
echo "FAIL: Expected HTTP 400 but got $status"
exit 1
fi
echo "PASS: audio_sample correctly rejected without Base model"
- name: "Phase 2: Stop server"
run: kill "$(cat /tmp/server.pid)" && sleep 2
# ==================================================================
# Phase 3: Base model only
# ==================================================================
- name: "Phase 3: Start server (Base only)"
run: |
TTS_BASE_MODEL_PATH=./models/Qwen3-TTS-12Hz-0.6B-Base \
uv run --project python python python/main.py &
echo $! > /tmp/server.pid
echo "Waiting for server..."
for i in $(seq 1 120); do
if curl -sf http://localhost:8000/health > /dev/null 2>&1; then
echo "Server is ready"
break
fi
sleep 2
done
curl -sf http://localhost:8000/health
- name: "Phase 3: Clone voice from Ryan English sample"
run: |
curl -sf --max-time 600 -X POST http://localhost:8000/v1/audio/speech \
-F model=qwen3-tts \
-F "input=This clones Ryan voice with only the Base model loaded." \
-F audio_sample=@artifacts/phase2_ryan_english.wav \
-F "audio_sample_text=Hello, this is Ryan speaking English with only the CustomVoice model loaded." \
-F language=English \
-F response_format=wav \
--output artifacts/phase3_clone_ryan.wav
echo "Generated phase3_clone_ryan.wav ($(stat --format=%s artifacts/phase3_clone_ryan.wav) bytes)"
- name: "Phase 3: Verify voice name returns error"
run: |
status=$(curl -s -o /tmp/response.json -w "%{http_code}" --max-time 30 \
-X POST http://localhost:8000/v1/audio/speech \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3-tts",
"input": "This should fail.",
"voice": "Ryan",
"language": "English",
"response_format": "wav"
}')
echo "HTTP status: $status"
cat /tmp/response.json
echo
if [ "$status" -ne 400 ]; then
echo "FAIL: Expected HTTP 400 but got $status"
exit 1
fi
echo "PASS: voice name correctly rejected without CustomVoice model"
- name: "Phase 3: Stop server"
run: kill "$(cat /tmp/server.pid)" && sleep 2
# ==================================================================
# Phase 4: ASR model only
# ==================================================================
- name: "Phase 4: Start server (ASR only)"
run: |
ASR_MODEL_PATH=./models/Qwen3-ASR-0.6B \
uv run --project python python python/main.py &
echo $! > /tmp/server.pid
echo "Waiting for server..."
for i in $(seq 1 120); do
if curl -sf http://localhost:8000/health > /dev/null 2>&1; then
echo "Server is ready"
break
fi
sleep 2
done
curl -sf http://localhost:8000/health
- name: "Phase 4: Transcribe English audio"
run: |
result=$(curl -sf --max-time 300 -X POST http://localhost:8000/v1/audio/transcriptions \
-F file=@artifacts/phase1_vivian_english.wav \
-F model=qwen3-asr \
-F language=English)
echo "Transcription result: $result"
echo "$result" > artifacts/phase4_transcribe_english.txt
# Verify we got a text response
echo "$result" | python3 -c "import sys, json; d = json.load(sys.stdin); assert 'text' in d and len(d['text']) > 0, 'No text in response'"
echo "PASS: English transcription successful"
- name: "Phase 4: Transcribe Chinese audio"
run: |
result=$(curl -sf --max-time 300 -X POST http://localhost:8000/v1/audio/transcriptions \
-F file=@artifacts/phase1_vivian_chinese.wav \
-F model=qwen3-asr \
-F language=Chinese)
echo "Transcription result: $result"
echo "$result" > artifacts/phase4_transcribe_chinese.txt
# Verify we got a text response
echo "$result" | python3 -c "import sys, json; d = json.load(sys.stdin); assert 'text' in d and len(d['text']) > 0, 'No text in response'"
echo "PASS: Chinese transcription successful"
- name: "Phase 4: Verify TTS returns error"
run: |
status=$(curl -s -o /tmp/response.json -w "%{http_code}" --max-time 30 \
-X POST http://localhost:8000/v1/audio/speech \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3-tts",
"input": "This should fail.",
"voice": "Vivian",
"language": "English",
"response_format": "wav"
}')
echo "HTTP status: $status"
cat /tmp/response.json
echo
if [ "$status" -ne 400 ]; then
echo "FAIL: Expected HTTP 400 but got $status"
exit 1
fi
echo "PASS: TTS correctly rejected without TTS model"
- name: "Phase 4: Stop server"
run: kill "$(cat /tmp/server.pid)" && sleep 2
# ==================================================================
# Phase 5: TTS + ASR Round-Trip Test
# ==================================================================
- name: "Phase 5: Start server (TTS + ASR)"
run: |
TTS_CUSTOMVOICE_MODEL_PATH=./models/Qwen3-TTS-12Hz-0.6B-CustomVoice \
ASR_MODEL_PATH=./models/Qwen3-ASR-0.6B \
uv run --project python python python/main.py &
echo $! > /tmp/server.pid
echo "Waiting for server..."
for i in $(seq 1 120); do
if curl -sf http://localhost:8000/health > /dev/null 2>&1; then
echo "Server is ready"
break
fi
sleep 2
done
curl -sf http://localhost:8000/health
- name: "Phase 5: TTS->ASR Round-Trip (English)"
run: |
INPUT_TEXT="Hello, this is a test of the Qwen text to speech system."
# Generate speech
curl -sf --max-time 600 -X POST http://localhost:8000/v1/audio/speech \
-H "Content-Type: application/json" \
-d "{
\"model\": \"qwen3-tts\",
\"input\": \"$INPUT_TEXT\",
\"voice\": \"Vivian\",
\"language\": \"English\",
\"response_format\": \"wav\"
}" \
--output artifacts/phase5_tts_english.wav
echo "Generated phase5_tts_english.wav ($(stat --format=%s artifacts/phase5_tts_english.wav) bytes)"
# Transcribe
result=$(curl -sf --max-time 300 -X POST http://localhost:8000/v1/audio/transcriptions \
-F file=@artifacts/phase5_tts_english.wav \
-F model=qwen3-asr \
-F language=English)
OUTPUT_TEXT=$(echo "$result" | python3 -c "import sys, json; print(json.load(sys.stdin)['text'])")
echo "=========================================="
echo "ENGLISH ROUND-TRIP TEST"
echo "=========================================="
echo "Input text: $INPUT_TEXT"
echo "Output text: $OUTPUT_TEXT"
echo "==========================================" | tee artifacts/phase5_roundtrip_english.txt
# The texts should be similar (not exact due to ASR limitations)
echo "PASS: English round-trip completed"
- name: "Phase 5: TTS->ASR Round-Trip (Chinese)"
run: |
INPUT_TEXT="你好,这是一个语音合成和语音识别的测试。"
# Generate speech
curl -sf --max-time 600 -X POST http://localhost:8000/v1/audio/speech \
-H "Content-Type: application/json" \
-d "{
\"model\": \"qwen3-tts\",
\"input\": \"$INPUT_TEXT\",
\"voice\": \"Vivian\",
\"language\": \"Chinese\",
\"response_format\": \"wav\"
}" \
--output artifacts/phase5_tts_chinese.wav
echo "Generated phase5_tts_chinese.wav ($(stat --format=%s artifacts/phase5_tts_chinese.wav) bytes)"
# Transcribe
result=$(curl -sf --max-time 300 -X POST http://localhost:8000/v1/audio/transcriptions \
-F file=@artifacts/phase5_tts_chinese.wav \
-F model=qwen3-asr \
-F language=Chinese)
OUTPUT_TEXT=$(echo "$result" | python3 -c "import sys, json; print(json.load(sys.stdin)['text'])")
echo "=========================================="
echo "CHINESE ROUND-TRIP TEST"
echo "=========================================="
echo "Input text: $INPUT_TEXT"
echo "Output text: $OUTPUT_TEXT"
echo "==========================================" | tee artifacts/phase5_roundtrip_chinese.txt
# The texts should be similar (not exact due to ASR limitations)
echo "PASS: Chinese round-trip completed"
- name: "Phase 5: Stop server"
run: kill "$(cat /tmp/server.pid)" && sleep 2
# ==================================================================
# Upload artifacts
# ==================================================================
- name: Upload audio artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: generated-audio
path: artifacts/*.wav
- name: Upload transcription artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: transcriptions
path: artifacts/*.txt