Skip to content

Commit 1edd586

Browse files
committed
update:read me and build
1 parent 788afc3 commit 1edd586

File tree

4 files changed

+22
-25
lines changed

4 files changed

+22
-25
lines changed

.github/workflows/macbuild.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,13 @@ permissions:
1111

1212
jobs:
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
@@ -53,4 +58,9 @@ jobs:
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

README.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ GITEE:https://gitee.com/xyry/libxengine
4242
GITHUB: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
4646
window Exection XEngine_WINEnv.bat
4747
Linux Exection:sudo ./XEngine_LINEnv.sh -i 3
4848
Macos Exection:./XEngine_LINEnv.sh -i 3

README.md

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ GITEE:https://gitee.com/xyry/libxengine
4141
GITHUB: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
4545
window执行XEngine_WINEnv.bat 脚本.
4646
Linux执行:sudo ./XEngine_LINEnv.sh -i 3
4747
macos执行:./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中提交

XEngine_Source/MQCore_SessionModule/Makefile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,13 @@ ifeq ($(RELEASE),1)
1515
FLAGS = -c
1616
DEBUG =
1717
else
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
2025
endif
2126

2227

0 commit comments

Comments
 (0)