File tree Expand file tree Collapse file tree 4 files changed +22
-25
lines changed
XEngine_Source/MQCore_SessionModule Expand file tree Collapse file tree 4 files changed +22
-25
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,13 @@ permissions:
1111
1212jobs :
1313 build :
14- runs-on : macos-13
15-
14+ strategy :
15+ matrix :
16+ include :
17+ - os : macos-13
18+ - os : macos-14
19+ runs-on : ${{ matrix.os }}
20+
1621 steps :
1722 # 检出您的主仓库代码
1823 - name : Checkout main repository code
5358 make PLATFORM=mac RELEASE=1
5459 make PLATFORM=mac FLAGS=InstallAll
5560 make PLATFORM=mac FLAGS=CleanAll
56- cd ..
61+ cd ..
62+ # 测试
63+ -name : test
64+ run : |
65+ cd XEngine_Release
66+ ./XEngine_MQServiceApp -t
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ GITEE:https://gitee.com/xyry/libxengine
4242GITHUB:https://github.com/libxengine/xengine
4343
4444##### fast to deployment
45- git clone https://gitee.com/xyry/libxengine.git or git clone https://github.com/libxengine/xengine .git
45+ git clone https://gitee.com/xyry/libxengine.git or git clone https://github.com/libxengine/libxengine .git
4646window Exection XEngine_WINEnv.bat
4747Linux Exection: sudo ./XEngine_LINEnv.sh -i 3
4848Macos Exection:./XEngine_LINEnv.sh -i 3
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ GITEE:https://gitee.com/xyry/libxengine
4141GITHUB:https://github.com/libxengine/xengine
4242
4343##### 快速部署
44- git clone https://gitee.com/xyry/libxengine.git 或者 git clone https://github.com/libxengine/xengine .git
44+ git clone https://gitee.com/xyry/libxengine.git 或者 git clone https://github.com/libxengine/libxengine .git
4545window执行XEngine_WINEnv.bat 脚本.
4646Linux执行: sudo ./XEngine_LINEnv.sh -i 3
4747macos执行:./XEngine_LINEnv.sh -i 3
@@ -123,24 +123,6 @@ make FLAGS=CleanAll 清理编译
123123## 关注我们
124124如果你觉得这个软件对你有帮助,请你给我们一个START吧
125125
126- ## 开发计划
127- 扩展获取消息的内容
128- 数据库缓存功能
129- 用户消息
130- 完善消息属性生效
131- 公众号和小程序
132- QOS(支持强回复确认)
133- 功能开关
134- MQTT支持
135- 支持时区设置
136- 完善消息订阅(永存)
137- 完善HTTP_CALL
138- 高性能内存队列
139- 扩充HTTP管理接口
140- 消息变量,支持消息变量设置
141- 序列号重置与优化
142- 完善公用KEY的使用
143-
144126## 提交问题
145127
146128如果你有问题,可以在issues中提交
Original file line number Diff line number Diff line change @@ -15,8 +15,13 @@ ifeq ($(RELEASE),1)
1515FLAGS = -c
1616DEBUG =
1717else
18- FLAGS = -c -lc_p
19- DEBUG = -g -pg
18+ ifeq ($(PLATFORM),mac)
19+ FLAGS = -c
20+ DEBUG = -g
21+ else
22+ FLAGS = -c -lc_p
23+ DEBUG = -g -pg
24+ endif
2025endif
2126
2227
You can’t perform that action at this time.
0 commit comments