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:
8282 - name : test
8383 run : |
8484 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'
9291
9392 - name : Upload folder as artifact with mac x64
9493 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+ =======================================================
123XEngine_StreamMedia V2.9.0.1001
224
325增加:音频编解码器和重采样支持
Original file line number Diff line number Diff line change @@ -51,11 +51,11 @@ Play Stream:
5151
5252#### XEngine environment
5353you 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
5656
5757#### 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
5959window Exection XEngine_WINEnv.bat
6060Linux Exection: sudo ./XEngine_LINEnv.sh -i 3
6161Macos Exection:./XEngine_LINEnv.sh -i 3
Original file line number Diff line number Diff line change @@ -55,12 +55,12 @@ c c++ streammedia server
5555#### XEngine环境
5656
5757在编译之前必须安装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
6060
6161#### 快速部署
6262
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
6464window执行XEngine_WINEnv.bat 脚本
6565Linux执行: sudo ./XEngine_LINEnv.sh -i 3
6666macos执行:./XEngine_LINEnv.sh -i 3
You can’t perform that action at this time.
0 commit comments