-
-
Notifications
You must be signed in to change notification settings - Fork 118
736 lines (659 loc) · 29.8 KB
/
test.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
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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
name: Test Dev Environment
on:
push:
branches:
- main
- release/*
jobs:
envs:
name: envs
steps:
##################################################################################################################
# Git checkout
- name: Checkout repository
uses: actions/checkout@v3
# The github.ref is, for example, refs/tags/v5.0.145 or refs/tags/v5.0-r8
# Generate variables like:
# SRS_TAG=v1.0.52
# SRS_MAJOR=1
# @see https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions#setting-an-environment-variable
- name: Generate varaiables
run: |
SRS_TAG=$(bash scripts/version.sh)
echo "SRS_TAG=$SRS_TAG" >> $GITHUB_ENV
SRS_MAJOR=$(echo $SRS_TAG| awk -F '.' '{print $1}' |sed 's/v//g')
echo "SRS_MAJOR=$SRS_MAJOR" >> $GITHUB_ENV
echo "SRS_TAG:$SRS_TAG, SRS_MAJOR:$SRS_MAJOR"
# Map a step output to a job output, see https://docs.github.com/en/actions/using-jobs/defining-outputs-for-jobs
outputs:
SRS_TAG: ${{ env.SRS_TAG }}
SRS_MAJOR: ${{ env.SRS_MAJOR }}
runs-on: ubuntu-20.04
run-test:
name: Run UTest
runs-on: ubuntu-20.04
needs:
- envs
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Download test file
run: |
curl --location --output test/source.200kbps.768x320.flv \
https://github.com/ossrs/srs/raw/develop/trunk/doc/source.200kbps.768x320.flv
- name: Setup the npm node
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
cache-dependency-path: |
ui/package-lock.json
- name: Setup the Go
uses: actions/setup-go@v3
with:
go-version: '>=1.16.0'
- name: Install tools
run: |
docker run --rm -v /usr/bin:/g ossrs/srs:tools \
cp /usr/local/bin/ffmpeg /usr/local/bin/ffprobe /g/
ffmpeg -version
- name: Test by jest and Go
run: |
make -j && make test -j
build-platform-image:
name: Build platform image
runs-on: ubuntu-20.04
needs:
- envs
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Build image for platform
run: |
docker build -t platform:latest -f Dockerfile .
docker images
docker save -o platform.tar platform:latest
- uses: actions/upload-artifact@v3
with:
name: platform-cache
path: platform.tar
retention-days: 1
test-zh-image:
name: Test ZH image
needs:
- envs
- build-platform-image
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Download test file
run: |
curl --location --output test/source.200kbps.768x320.flv \
https://github.com/ossrs/srs/raw/develop/trunk/doc/source.200kbps.768x320.flv
- name: Install tools
run: |
docker run --rm -v /usr/bin:/g ossrs/srs:tools \
cp /usr/local/bin/ffmpeg /usr/local/bin/ffprobe /g/
ffmpeg -version
- uses: actions/download-artifact@v3
with:
name: platform-cache
- name: Run test for platform image
run: |
docker load -i platform.tar
docker tag platform ossrs/srs-stack:5
docker run --rm -d -p 2022:2022 -p 2443:2443 -p 1935:1935/tcp -p 1985:1985/tcp \
-p 8080:8080/tcp -p 8000:8000/udp -p 10080:10080/udp --name srs-stack \
-v /data:/data -e REACT_APP_LOCALE=zh ossrs/srs-stack:5
- name: Check and Test service
run: |
# We will handle the error by ourselves.
set +e
# Record all logs.
docker logs -f srs-stack >docker.log 2>&1 & pid_docker=$!
echo "Wait for service ready." &&
make -j -C test &&
bash scripts/tools/secret.sh --output test/.env &&
./test/srs-stack.test -test.v -endpoint http://localhost:2022 \
-srs-log=true -wait-ready=true -init-password=true -init-self-signed-cert=true \
-check-api-secret=true -test.run TestApi_Empty &&
echo "Make upload writable." &&
sudo chmod 777 /data/upload &&
echo "Test HTTP service." &&
bash scripts/tools/secret.sh --output test/.env &&
./test/srs-stack.test -test.v -endpoint http://localhost:2022 \
-srs-log=true -wait-ready=true -init-password=false -init-self-signed-cert=false \
-check-api-secret=true -no-media-test &&
echo "Test HTTPS service." &&
bash scripts/tools/secret.sh --output test/.env &&
./test/srs-stack.test -test.v -endpoint https://localhost:2443 \
-srs-log=true -wait-ready=true -init-password=false -init-self-signed-cert=false \
-check-api-secret=true -no-media-test &&
echo "Run media test with retry" &&
bash scripts/tools/secret.sh --output test/.env &&
./scripts/tools/failed-retry.sh 1 ./test/srs-stack.test -test.v -endpoint http://localhost:2022 \
-srs-log=true -wait-ready=true -init-password=false -init-self-signed-cert=false \
-check-api-secret=true -test.run TestApi_Publish*
ret=$?; echo "Test result: $ret"
echo "Stop service"
docker stop srs-stack
kill $pid_docker 2>/dev/null
echo "Log of docker.log" && cat docker.log
exit $ret
runs-on: ubuntu-20.04
test-en-image:
name: Test EN image
needs:
- envs
- build-platform-image
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Download test file
run: |
curl --location --output test/source.200kbps.768x320.flv \
https://github.com/ossrs/srs/raw/develop/trunk/doc/source.200kbps.768x320.flv
- name: Install tools
run: |
docker run --rm -v /usr/bin:/g ossrs/srs:tools \
cp /usr/local/bin/ffmpeg /usr/local/bin/ffprobe /g/
ffmpeg -version
- uses: actions/download-artifact@v3
with:
name: platform-cache
- name: Run test for platform image
run: |
docker load -i platform.tar
docker tag platform ossrs/srs-stack:5
docker run --rm -d -p 2022:2022 -p 2443:2443 -p 1935:1935/tcp -p 1985:1985/tcp \
-p 8080:8080/tcp -p 8000:8000/udp -p 10080:10080/udp --name srs-stack \
-v /data:/data -e REACT_APP_LOCALE=en ossrs/srs-stack:5
- name: Check and Test service
run: |
# We will handle the error by ourselves.
set +e
# Record all logs.
docker logs -f srs-stack >docker.log 2>&1 & pid_docker=$!
echo "Wait for service ready." &&
make -j -C test &&
bash scripts/tools/secret.sh --output test/.env &&
./test/srs-stack.test -test.v -endpoint http://localhost:2022 \
-srs-log=true -wait-ready=true -init-password=true -init-self-signed-cert=true \
-check-api-secret=true -test.run TestApi_Empty &&
echo "Make upload writable." &&
sudo chmod 777 /data/upload &&
echo "Test HTTP service." &&
bash scripts/tools/secret.sh --output test/.env &&
./test/srs-stack.test -test.v -endpoint http://localhost:2022 \
-srs-log=true -wait-ready=true -init-password=false -init-self-signed-cert=false \
-check-api-secret=true -no-media-test &&
echo "Test HTTPS service." &&
bash scripts/tools/secret.sh --output test/.env &&
./test/srs-stack.test -test.v -endpoint https://localhost:2443 \
-srs-log=true -wait-ready=true -init-password=false -init-self-signed-cert=false \
-check-api-secret=true -no-media-test &&
echo "Run media test with retry" &&
bash scripts/tools/secret.sh --output test/.env &&
./scripts/tools/failed-retry.sh 1 ./test/srs-stack.test -test.v -endpoint http://localhost:2022 \
-srs-log=true -wait-ready=true -init-password=false -init-self-signed-cert=false \
-check-api-secret=true -test.run TestApi_Publish*
ret=$?; echo "Test result: $ret"
echo "Stop service"
docker stop srs-stack
kill $pid_docker 2>/dev/null
echo "Log of docker.log" && cat docker.log
exit $ret
runs-on: ubuntu-20.04
test-zh-installer:
name: Test ZH installer
runs-on: ubuntu-20.04
needs:
- envs
- build-platform-image
steps:
- name: Covert output to env
run: |
echo "SRS_TAG=${{ needs.envs.outputs.SRS_TAG }}" >> $GITHUB_ENV
echo "SRS_MAJOR=${{ needs.envs.outputs.SRS_MAJOR }}" >> $GITHUB_ENV
- name: Checkout repository
uses: actions/checkout@v3
- name: Download test file
run: |
curl --location --output test/source.200kbps.768x320.flv \
https://github.com/ossrs/srs/raw/develop/trunk/doc/source.200kbps.768x320.flv
- name: Install tools
run: |
docker run --rm -v /usr/bin:/g ossrs/srs:tools \
cp /usr/local/bin/ffmpeg /usr/local/bin/ffprobe /g/
ffmpeg -version
- name: Start Nginx service
run: |
sudo systemctl start nginx
sudo systemctl status nginx
- uses: actions/download-artifact@v3
with:
name: platform-cache
- name: Load platform image
run: |
docker load -i platform.tar
docker tag platform:latest ossrs/srs-stack:$SRS_TAG
docker tag platform:latest registry.cn-hangzhou.aliyuncs.com/ossrs/srs-stack:$SRS_TAG
docker images
- name: Build package
run: |
bash scripts/setup-ubuntu/build.sh --language zh --version $SRS_TAG \
--output $(pwd)/build --extract
du -sh $(pwd)/build/*
- name: Install package
run: |
sudo bash build/srs_stack/scripts/setup-ubuntu/install.sh --verbose
echo "" && echo "/usr/local/srs-stack/" && du -sh /usr/local/srs-stack/*
echo "" && ls -lha /data /data/config
- name: Check and Test service
run: |
# We will handle the error by ourselves.
set +e
# Record all logs.
journalctl -u srs-stack -f >journalctl.log 2>&1 & pid_journalctl=$!
echo "Wait for service ready." &&
make -j -C test &&
bash scripts/tools/secret.sh --output test/.env &&
./test/srs-stack.test -test.v -endpoint http://localhost:2022 \
-srs-log=true -wait-ready=true -init-password=true -init-self-signed-cert=true \
-check-api-secret=true -test.run TestApi_Empty &&
echo "Make upload writable." &&
sudo chmod 777 /data/upload &&
echo "Test HTTP service." &&
bash scripts/tools/secret.sh --output test/.env &&
./test/srs-stack.test -test.v -endpoint http://localhost:2022 \
-srs-log=true -wait-ready=true -init-password=false -init-self-signed-cert=false \
-check-api-secret=true -no-media-test &&
echo "Test HTTPS service." &&
bash scripts/tools/secret.sh --output test/.env &&
./test/srs-stack.test -test.v -endpoint https://localhost:2443 \
-srs-log=true -wait-ready=true -init-password=false -init-self-signed-cert=false \
-check-api-secret=true -no-media-test &&
echo "Run media test with retry" &&
bash scripts/tools/secret.sh --output test/.env &&
./scripts/tools/failed-retry.sh 1 ./test/srs-stack.test -test.v -endpoint http://localhost:2022 \
-srs-log=true -wait-ready=true -init-password=false -init-self-signed-cert=false \
-check-api-secret=true -test.run TestApi_Publish*
ret=$?; echo "Test result: $ret"
echo "Stop service"
sudo systemctl stop srs-stack
kill $pid_journalctl 2>/dev/null
echo "Log of journalctl.log" && cat journalctl.log
exit $ret
test-en-installer:
name: Test EN installer
runs-on: ubuntu-20.04
needs:
- envs
- build-platform-image
steps:
- name: Covert output to env
run: |
echo "SRS_TAG=${{ needs.envs.outputs.SRS_TAG }}" >> $GITHUB_ENV
echo "SRS_MAJOR=${{ needs.envs.outputs.SRS_MAJOR }}" >> $GITHUB_ENV
- name: Checkout repository
uses: actions/checkout@v3
- name: Download test file
run: |
curl --location --output test/source.200kbps.768x320.flv \
https://github.com/ossrs/srs/raw/develop/trunk/doc/source.200kbps.768x320.flv
- name: Install tools
run: |
docker run --rm -v /usr/bin:/g ossrs/srs:tools \
cp /usr/local/bin/ffmpeg /usr/local/bin/ffprobe /g/
ffmpeg -version
- name: Start Nginx service
run: |
sudo systemctl start nginx
sudo systemctl status nginx
- uses: actions/download-artifact@v3
with:
name: platform-cache
- name: Load platform image
run: |
docker load -i platform.tar
docker tag platform:latest ossrs/srs-stack:$SRS_TAG
docker tag platform:latest registry.cn-hangzhou.aliyuncs.com/ossrs/srs-stack:$SRS_TAG
docker images
- name: Build package
run: |
bash scripts/setup-ubuntu/build.sh --language en --version $SRS_TAG \
--output $(pwd)/build --extract
du -sh $(pwd)/build/*
- name: Install package
run: |
sudo bash build/srs_stack/scripts/setup-ubuntu/install.sh --verbose
echo "" && echo "/usr/local/srs-stack/" && du -sh /usr/local/srs-stack/*
echo "" && ls -lha /data /data/config
- name: Check and Test service
run: |
# We will handle the error by ourselves.
set +e
# Record all logs.
journalctl -u srs-stack -f >journalctl.log 2>&1 & pid_journalctl=$!
echo "Wait for service ready." &&
make -j -C test &&
bash scripts/tools/secret.sh --output test/.env &&
./test/srs-stack.test -test.v -endpoint http://localhost:2022 \
-srs-log=true -wait-ready=true -init-password=true -init-self-signed-cert=true \
-check-api-secret=true -test.run TestApi_Empty &&
echo "Make upload writable." &&
sudo chmod 777 /data/upload &&
echo "Test HTTP service." &&
bash scripts/tools/secret.sh --output test/.env &&
./test/srs-stack.test -test.v -endpoint http://localhost:2022 \
-srs-log=true -wait-ready=true -init-password=false -init-self-signed-cert=false \
-check-api-secret=true -no-media-test &&
echo "Test HTTPS service." &&
bash scripts/tools/secret.sh --output test/.env &&
./test/srs-stack.test -test.v -endpoint https://localhost:2443 \
-srs-log=true -wait-ready=true -init-password=false -init-self-signed-cert=false \
-check-api-secret=true -no-media-test &&
echo "Run media test with retry" &&
bash scripts/tools/secret.sh --output test/.env &&
./scripts/tools/failed-retry.sh 1 ./test/srs-stack.test -test.v -endpoint http://localhost:2022 \
-srs-log=true -wait-ready=true -init-password=false -init-self-signed-cert=false \
-check-api-secret=true -test.run TestApi_Publish*
ret=$?; echo "Test result: $ret"
echo "Stop service"
sudo systemctl stop srs-stack
kill $pid_journalctl 2>/dev/null
echo "Log of journalctl.log" && cat journalctl.log
exit $ret
test-bt-plugin:
name: Test BT plugin
runs-on: ubuntu-20.04
needs:
- envs
- build-platform-image
steps:
- name: Remove unnecessary files
run: |
df -h
echo ""
echo "After removed some unused files."
echo ""
sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc \
/usr/local/share/powershell /usr/share/swift /usr/lib/jvm
df -h
- name: Covert output to env
run: |
echo "SRS_TAG=${{ needs.envs.outputs.SRS_TAG }}" >> $GITHUB_ENV
echo "SRS_MAJOR=${{ needs.envs.outputs.SRS_MAJOR }}" >> $GITHUB_ENV
- name: Checkout repository
uses: actions/checkout@v3
- name: Download test file
run: |
curl --location --output test/source.200kbps.768x320.flv \
https://github.com/ossrs/srs/raw/develop/trunk/doc/source.200kbps.768x320.flv
- name: Install tools
run: |
docker run --rm -v /usr/bin:/g ossrs/srs:tools \
cp /usr/local/bin/ffmpeg /usr/local/bin/ffprobe /g/
ffmpeg -version
- uses: actions/download-artifact@v3
with:
name: platform-cache
# See https://github.com/moby/moby/issues/13742#issuecomment-725197223
- name: Force docker to use vfs.
run: |
sudo systemctl stop docker
echo '{"cgroup-parent":"/actions_job","storage-driver":"vfs"}' | sudo tee /etc/docker/daemon.json
sudo systemctl start docker
- name: Add hosts to /etc/hosts
run: |
sudo echo "127.0.0.1 srs.stack.local" | sudo tee -a /etc/hosts
- name: Build package
run: |
bash scripts/setup-bt/auto/zip.sh --version $SRS_TAG \
--output build --extract
du -sh build/*
- name: Start BT develop container
env:
BT_API: ${{ secrets.BT_API }}
BT_USER: ${{ secrets.BT_USER }}
run: |
mkdir -p $HOME/.bt
echo -n "$BT_API" > $HOME/.bt/api.json
echo -n "$BT_USER" > $HOME/.bt/userInfo.json
BT_KEY=$(cat $HOME/.bt/api.json |awk -F token_crypt '{print $2}' |cut -d'"' -f3)
# Note that we must mount the /data to allow test to read the MGMT_PASSWORD in /data/config/.env
docker run -v /data:/data -p 80:80 -p 443:443 -p 7800:7800 \
-p 2022:2022 -p 1935:1935/tcp -p 1985:1985/tcp -p 8080:8080/tcp -p 8000:8000/udp -p 10080:10080/udp \
-v $(pwd)/build/srs_stack:/www/server/panel/plugin/srs_stack \
-v $HOME/.bt/userInfo.json:/www/server/panel/data/userInfo.json \
-v $HOME/.bt/api.json:/www/server/panel/config/api.json -e BT_KEY=$BT_KEY \
--privileged -v /sys/fs/cgroup:/sys/fs/cgroup:ro \
--add-host srs.stack.local:127.0.0.1 \
-d --rm -v $(pwd):/g -w /g --name=bt ossrs/bt-plugin-dev:1
echo "BT docker started."
- name: Wait for systemd service start
run: |
# We will handle the error by ourselves.
set +e
for ((i=0; i<10; i++)); do
if [[ $(docker exec bt systemctl status docker >/dev/null 2>/dev/null && echo yes) == yes ]]; then
echo "Docker service started."
break
else
echo "Wait for docker service start."
sleep 1
fi
done
docker exec bt systemctl status docker
echo "Docker service started."
- name: Import platform image to BT
run: |
docker exec bt docker load -i platform.tar
echo "Import platform image to BT ok."
docker exec bt docker tag platform:latest ossrs/srs-stack:$SRS_TAG
docker exec bt docker tag platform:latest registry.cn-hangzhou.aliyuncs.com/ossrs/srs-stack:$SRS_TAG
echo "Tag platform image to BT ok."
docker exec bt docker images
- name: Install SRS Stack plugin
run: |
docker exec bt bash /www/server/panel/plugin/srs_stack/install.sh install
echo "Install SRS Stack plugin ok."
docker exec bt python3 /www/server/panel/plugin/srs_stack/bt_api_create_site.py
docker exec bt python3 /www/server/panel/plugin/srs_stack/bt_api_setup_site.py
echo "Create SRS site ok."
docker exec bt bash /www/server/panel/plugin/srs_stack/setup.sh \
--r0 /tmp/srs_stack_install.r0 --nginx /www/server/nginx/logs/nginx.pid \
--www /www/wwwroot --site srs.stack.local
echo "Setup SRS Stack plugin ok."
set +e
docker exec bt systemctl status srs-stack
docker exec bt journalctl -u srs-stack
docker exec bt docker logs srs-stack
- name: Check and Test service
run: |
# We will handle the error by ourselves.
set +e
# Record all logs.
docker exec bt journalctl -u srs-stack -f >journalctl.log 2>&1 &
echo "Wait for service ready." &&
make -j -C test &&
bash scripts/tools/secret.sh --output test/.env &&
./test/srs-stack.test -test.v -endpoint http://srs.stack.local:80 \
-srs-log=true -wait-ready=true -init-password=true -init-self-signed-cert=true \
-check-api-secret=true -test.run TestApi_Empty &&
echo "Make upload writable." &&
sudo chmod 777 /data/upload &&
echo "Test HTTP service." &&
bash scripts/tools/secret.sh --output test/.env &&
./test/srs-stack.test -test.v -endpoint http://srs.stack.local:80 \
-srs-log=true -wait-ready=true -init-password=false -init-self-signed-cert=false \
-check-api-secret=true -no-media-test &&
echo "Test HTTPS service." &&
bash scripts/tools/secret.sh --output test/.env &&
./test/srs-stack.test -test.v -endpoint https://srs.stack.local:443 \
-srs-log=true -wait-ready=true -init-password=false -init-self-signed-cert=false \
-check-api-secret=true -no-media-test &&
echo "Run media test with retry" &&
bash scripts/tools/secret.sh --output test/.env &&
./scripts/tools/failed-retry.sh 1 ./test/srs-stack.test -test.v -endpoint http://srs.stack.local:80 \
-srs-log=true -wait-ready=true -init-password=false -init-self-signed-cert=false \
-check-api-secret=true -test.run TestApi_Publish*
ret=$?; echo "Test result: $ret"
echo "Stop service"
docker exec bt systemctl stop srs-stack
docker stop bt
echo "Log of journalctl.log" && cat journalctl.log
exit $ret
test-aapanel-plugin:
name: Test aaPanel plugin
runs-on: ubuntu-20.04
needs:
- envs
- build-platform-image
steps:
- name: Remove unnecessary files
run: |
df -h
echo ""
echo "After removed some unused files."
echo ""
sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc \
/usr/local/share/powershell /usr/share/swift /usr/lib/jvm
df -h
- name: Covert output to env
run: |
echo "SRS_TAG=${{ needs.envs.outputs.SRS_TAG }}" >> $GITHUB_ENV
echo "SRS_MAJOR=${{ needs.envs.outputs.SRS_MAJOR }}" >> $GITHUB_ENV
- name: Checkout repository
uses: actions/checkout@v3
- name: Download test file
run: |
curl --location --output test/source.200kbps.768x320.flv \
https://github.com/ossrs/srs/raw/develop/trunk/doc/source.200kbps.768x320.flv
- name: Install tools
run: |
docker run --rm -v /usr/bin:/g ossrs/srs:tools \
cp /usr/local/bin/ffmpeg /usr/local/bin/ffprobe /g/
ffmpeg -version
- uses: actions/download-artifact@v3
with:
name: platform-cache
# See https://github.com/moby/moby/issues/13742#issuecomment-725197223
- name: Force docker to use vfs.
run: |
sudo systemctl stop docker
echo '{"cgroup-parent":"/actions_job","storage-driver":"vfs"}' | sudo tee /etc/docker/daemon.json
sudo systemctl start docker
- name: Add hosts to /etc/hosts
run: |
sudo echo "127.0.0.1 srs.stack.local" | sudo tee -a /etc/hosts
- name: Build package
run: |
bash scripts/setup-aapanel/auto/zip.sh --version $SRS_TAG \
--output build --extract
du -sh build/*
- name: Start aaPanel develop container
env:
AAPANEL_API: ${{ secrets.BT_API }}
run: |
mkdir -p $HOME/.aapanel
echo -n "$AAPANEL_API" > $HOME/.aapanel/api.json
AAPANEL_KEY=$(cat $HOME/.aapanel/api.json |awk -F token_crypt '{print $2}' |cut -d'"' -f3)
# Note that we must mount the /data to allow test to read the MGMT_PASSWORD in /data/config/.env
docker run -v /data:/data -p 80:80 -p 443:443 -p 7800:7800 \
-p 2022:2022 -p 1935:1935/tcp -p 1985:1985/tcp -p 8080:8080/tcp -p 8000:8000/udp -p 10080:10080/udp \
-v $(pwd)/build/srs_stack:/www/server/panel/plugin/srs_stack \
-v $HOME/.aapanel/api.json:/www/server/panel/config/api.json -e BT_KEY=$AAPANEL_KEY \
--privileged -v /sys/fs/cgroup:/sys/fs/cgroup:ro \
--add-host srs.stack.local:127.0.0.1 \
-d --rm -v $(pwd):/g -w /g --name=aapanel ossrs/aapanel-plugin-dev:1
echo "aaPanel docker started."
- name: Wait for systemd service start
run: |
# We will handle the error by ourselves.
set +e
for ((i=0; i<10; i++)); do
if [[ $(docker exec aapanel systemctl status docker >/dev/null 2>/dev/null && echo yes) == yes ]]; then
echo "Docker service started."
break
else
echo "Wait for docker service start."
sleep 1
fi
done
docker exec aapanel systemctl status docker
echo "Docker service started."
- name: Import platform image to aaPanel
run: |
docker exec aapanel docker load -i platform.tar
echo "Import platform image to aaPanel ok."
docker exec aapanel docker tag platform:latest ossrs/srs-stack:$SRS_TAG
docker exec aapanel docker tag platform:latest registry.cn-hangzhou.aliyuncs.com/ossrs/srs-stack:$SRS_TAG
echo "Tag platform image to aaPanel ok."
docker exec aapanel docker images
- name: Install SRS Stack plugin
run: |
docker exec aapanel bash /www/server/panel/plugin/srs_stack/install.sh install
echo "Install SRS Stack plugin ok."
docker exec aapanel python3 /www/server/panel/plugin/srs_stack/bt_api_create_site.py
docker exec aapanel python3 /www/server/panel/plugin/srs_stack/bt_api_setup_site.py
echo "Create SRS site ok."
docker exec aapanel bash /www/server/panel/plugin/srs_stack/setup.sh \
--r0 /tmp/srs_stack_install.r0 --nginx /www/server/nginx/logs/nginx.pid \
--www /www/wwwroot --site srs.stack.local
echo "Setup SRS Stack plugin ok."
set +e
docker exec aapanel systemctl status srs-stack
docker exec aapanel journalctl -u srs-stack
docker exec aapanel docker logs srs-stack
- name: Check and Test service
run: |
# We will handle the error by ourselves.
set +e
# Record all logs.
docker exec aapanel journalctl -u srs-stack -f >journalctl.log 2>&1 &
echo "Wait for service ready." &&
make -j -C test &&
bash scripts/tools/secret.sh --output test/.env &&
./test/srs-stack.test -test.v -endpoint http://srs.stack.local:80 \
-srs-log=true -wait-ready=true -init-password=true -init-self-signed-cert=true \
-check-api-secret=true -test.run TestApi_Empty &&
echo "Make upload writable." &&
sudo chmod 777 /data/upload &&
echo "Test HTTP service." &&
bash scripts/tools/secret.sh --output test/.env &&
./test/srs-stack.test -test.v -endpoint http://srs.stack.local:80 \
-srs-log=true -wait-ready=true -init-password=false -init-self-signed-cert=false \
-check-api-secret=true -no-media-test &&
echo "Test HTTPS service." &&
bash scripts/tools/secret.sh --output test/.env &&
./test/srs-stack.test -test.v -endpoint https://srs.stack.local:443 \
-srs-log=true -wait-ready=true -init-password=false -init-self-signed-cert=false \
-check-api-secret=true -no-media-test &&
echo "Run media test with retry" &&
bash scripts/tools/secret.sh --output test/.env &&
./scripts/tools/failed-retry.sh 1 ./test/srs-stack.test -test.v -endpoint http://srs.stack.local:80 \
-srs-log=true -wait-ready=true -init-password=false -init-self-signed-cert=false \
-check-api-secret=true -test.run TestApi_Publish*
ret=$?; echo "Test result: $ret"
echo "Stop service"
docker exec aapanel systemctl stop srs-stack
docker stop aapanel
echo "Log of journalctl.log" && cat journalctl.log
exit $ret
test-final:
name: test-final
runs-on: ubuntu-20.04
needs:
- run-test
- test-zh-image
- test-en-image
- test-zh-installer
- test-en-installer
- test-bt-plugin
- test-aapanel-plugin
steps:
- uses: geekyeggo/delete-artifact@v2
with:
name: platform-cache
- run: echo OK