File tree Expand file tree Collapse file tree 6 files changed +34
-13
lines changed Expand file tree Collapse file tree 6 files changed +34
-13
lines changed Original file line number Diff line number Diff line change @@ -82,13 +82,12 @@ jobs:
82
82
- name : test
83
83
run : |
84
84
cd XEngine_Release
85
- sudo launchctl limit core unlimited
86
- sudo sysctl -w kern.corefile=coredump
87
- set +e
88
- ./XEngine_StreamMediaApp -t
89
- ls -al
90
- lldb ./XEngine_StreamMediaApp ./coredump
91
- set -e
85
+ ulimit -c unlimited
86
+ sudo sysctl -w kern.corefile=/cores/core.%P
87
+ ./XEngine_StreamMediaApp -t || true
88
+ ls -l /cores
89
+ LATEST_CORE=$(ls -t /cores/core.* | head -1)
90
+ lldb -c $LATEST_CORE -o 'bt all' -o 'exit'
92
91
93
92
- name : Upload folder as artifact with mac x64
94
93
if : matrix.os == 'macos-13'
Original file line number Diff line number Diff line change
1
+ XEngine_StreamMedia V2.10.0.1001
2
+
3
+ 增加:windows coredump支持
4
+ 更新:匹配XEngineV9版本支持
5
+ 更新:CI支持更多发布类型
6
+ 更新:依赖库
7
+ 更新:升级编译器版本
8
+ 优化:获取报告次数
9
+ 修改:vs2022的ansi字符集改为unicode字符集
10
+ 修正:其他语言系统乱码问题
11
+ 修正:编译选项的问题
12
+
13
+ added:windows core-dump support
14
+ update:match xengine v9.x support
15
+ update:workflows more release support
16
+ update:depend library
17
+ update:compiler version to c++20 and c17
18
+ improved:get report count
19
+ modify:character-set to unicode from ansi on vs
20
+ fixed:Garbled characters on other language system
21
+ fixed:problem that build flags
22
+ =======================================================
1
23
XEngine_StreamMedia V2.9.0.1001
2
24
3
25
增加:音频编解码器和重采样支持
Original file line number Diff line number Diff line change @@ -51,11 +51,11 @@ Play Stream:
51
51
52
52
#### XEngine environment
53
53
you have to install xengine before complie,You can refer to its Readme document
54
- GITEE:https://gitee.com/xyry /libxengine
55
- GITHUB:https://github.com/libxengine/xengine
54
+ GITEE:https://gitee.com/libxengine /libxengine
55
+ GITHUB:https://github.com/libxengine/libxengine
56
56
57
57
#### fast to deployment
58
- git clone https://gitee.com/xyry /libxengine.git or git clone https://github.com/libxengine/xengine .git
58
+ git clone https://gitee.com/libxengine /libxengine.git or git clone https://github.com/libxengine/libxengine .git
59
59
window Exection XEngine_WINEnv.bat
60
60
Linux Exection: sudo ./XEngine_LINEnv.sh -i 3
61
61
Macos Exection:./XEngine_LINEnv.sh -i 3
Original file line number Diff line number Diff line change @@ -55,12 +55,12 @@ c c++ streammedia server
55
55
#### XEngine环境
56
56
57
57
在编译之前必须安装XEngine,可以参考其Readme文档
58
- GITEE:https://gitee.com/xyry /libxengine
59
- GITHUB:https://github.com/libxengine/xengine
58
+ GITEE:https://gitee.com/libxengine /libxengine
59
+ GITHUB:https://github.com/libxengine/libxengine
60
60
61
61
#### 快速部署
62
62
63
- git clone https://gitee.com/xyry /libxengine.git 或者 git clone https://github.com/libxengine/xengine .git
63
+ git clone https://gitee.com/libxengine /libxengine.git 或者 git clone https://github.com/libxengine/libxengine .git
64
64
window执行XEngine_WINEnv.bat 脚本
65
65
Linux执行: sudo ./XEngine_LINEnv.sh -i 3
66
66
macos执行:./XEngine_LINEnv.sh -i 3
You can’t perform that action at this time.
0 commit comments