File tree Expand file tree Collapse file tree 2 files changed +26
-12
lines changed
Expand file tree Collapse file tree 2 files changed +26
-12
lines changed Original file line number Diff line number Diff line change 9090 cp -r XEngine_Source/VSCopy_x64.bat XEngine_Release/
9191 cd XEngine_Release
9292 ./VSCopy_x64.bat
93- ./XEngine_CenterApp -t
94- ./XEngine_Http2App -t
95- ./XEngine_HttpApp -t
96- ./XEngine_SimpleApp -t
97- ./XEngine_WebSocketApp -t
98- shell : pwsh
93+ # ./XEngine_CenterApp -t
94+ # ./XEngine_Http2App -t
95+ # ./XEngine_HttpApp -t
96+ # ./XEngine_SimpleApp -t
97+ # ./XEngine_WebSocketApp -t
98+ shell : pwsh
99+
100+ - name : Upload folder as artifact with x86
101+ if : matrix.configuration == 'Release' && matrix.platform == 'x64'
102+ uses : actions/upload-artifact@v4
103+ with :
104+ name : XEngine_APIServiceApp-x86_32-Windows
105+ path : XEngine_Release/
106+
107+ - name : Upload folder as artifact with x64
108+ if : matrix.configuration == 'Release' && matrix.platform == 'x64'
109+ uses : actions/upload-artifact@v4
110+ with :
111+ name : XEngine_APIServiceApp-x86_64-Windows
112+ path : XEngine_Release/
Original file line number Diff line number Diff line change @@ -30,14 +30,18 @@ jobs:
3030 repository : libxengine/libxengine
3131 path : libxengine
3232
33+ - name : sub module checkout (opensource)
34+ run : |
35+ dnf install jq unzip -y
36+ git submodule init
37+ git submodule update
3338 # 设置依赖库的环境变量
3439 - name : Set up Dependency rocky linux Environment
3540 run : |
3641 cd libxengine
3742 chmod 777 *
3843 ./XEngine_LINEnv.sh -i 3
39-
40- dnf install jq unzip -y
44+
4145 latest_tag=$(curl -s https://api.github.com/repos/libxengine/libxengine/releases/latest | jq -r .tag_name)
4246 wget https://github.com/libxengine/libxengine/releases/download/$latest_tag/XEngine_RockyLinux_9_x86-64.zip
4347 unzip ./XEngine_RockyLinux_9_x86-64.zip -d ./XEngine_RockyLinux_9_x86-64
4751 find ./XEngine_Linux -name "*.so" -exec cp {} /usr/local/lib \;
4852 ldconfig
4953
50- - name : sub module checkout (opensource)
51- run : |
52- git submodule init
53- git submodule update
5454 # 编译
5555 - name : make
5656 run : |
You can’t perform that action at this time.
0 commit comments