File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -21,14 +21,20 @@ jobs:
2121 steps :
2222 # 检出您的主仓库代码
2323 - name : Checkout main repository code
24- uses : actions/checkout@4
24+ uses : actions/checkout@v4
2525
2626 # 检出依赖的xengine仓库到指定的xengine目录
2727 - name : Checkout dependency repository (xengine)
2828 uses : actions/checkout@v4
2929 with :
3030 repository : libxengine/xengine
3131 path : xengine
32+
33+ - name : sub module checkout (opensource)
34+ run : |
35+ git submodule init
36+ git submodule update
37+ shell : pwsh
3238
3339 # 设置依赖库的环境变量
3440 - name : Set up Dependency Environment Variables
43494450 # 编译
4551 - name : Build Solution
46- run : msbuild XEngine_Source/XEngine_MQServiceApp.sln /p:Configuration=${{ matrix.configuration }} /p:Platform=${{ matrix.platform }}
52+ run : msbuild XEngine_Source/XEngine_MQServiceApp.sln /p:Configuration=${{ matrix.configuration }} /p:Platform=${{ matrix.platform }}
You can’t perform that action at this time.
0 commit comments