Skip to content

Commit 06cb0ab

Browse files
committed
fixed:build error
1 parent e32ba02 commit 06cb0ab

File tree

4 files changed

+10
-17
lines changed

4 files changed

+10
-17
lines changed

.github/workflows/Rocky_build.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ jobs:
3535
uses: actions/checkout@v4
3636
with:
3737
ref: 'develop'
38+
fetch-depth: 0
39+
submodules: 'recursive'
3840

3941
- name: Checkout dependency repository (xengine)
4042
uses: actions/checkout@v4
@@ -49,11 +51,6 @@ jobs:
4951
run: |
5052
dnf update -y
5153
dnf install gcc g++ make git jq unzip wget -y
52-
53-
- name: sub module checkout (opensource)
54-
run: |
55-
git submodule init
56-
git submodule update
5754
5855
- name: install xengine library
5956
run: |

.github/workflows/debian_build.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131
uses: actions/checkout@v4
3232
with:
3333
ref: 'develop'
34+
fetch-depth: 0
35+
submodules: 'recursive'
3436

3537
- name: Checkout dependency repository (xengine)
3638
uses: actions/checkout@v4
@@ -47,11 +49,6 @@ jobs:
4749
apt install gcc g++ make git jq unzip curl wget -y
4850
apt install liblua5.4-dev libopencv-dev libopencv-contrib-dev libqrencode-dev libleptonica-dev libtesseract-dev -y
4951
50-
- name: sub module checkout (opensource)
51-
run: |
52-
git submodule init
53-
git submodule update
54-
5552
- name: install xengine library
5653
run: |
5754
latest_tag=$(curl -s https://api.github.com/repos/libxengine/libxengine/releases/latest | jq -r .tag_name)

.github/workflows/fedora_build.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ jobs:
3535
steps:
3636
- name: Checkout main repository code
3737
uses: actions/checkout@v4
38+
with:
39+
ref: 'develop'
40+
fetch-depth: 0
41+
submodules: 'recursive'
3842

3943
- name: Checkout dependency repository (xengine)
4044
uses: actions/checkout@v4
@@ -51,11 +55,6 @@ jobs:
5155
- name: Set TERM variable
5256
run: echo "TERM=xterm" >> $GITHUB_ENV
5357

54-
- name: sub module checkout (opensource)
55-
run: |
56-
git submodule init
57-
git submodule update
58-
5958
- name: install xengine library
6059
run: |
6160
latest_tag=$(curl -s https://api.github.com/repos/libxengine/libxengine/releases/latest | jq -r .tag_name)

XEngine_Source/XEngine_ServiceApp/XEngine_HttpApp/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ FILEEXT =
44
LIBFLAG =
55
LOADHDR = -I ./
66
LOADSO = -L ../../XEngine_ModuleConfigure -L ../../XEngine_ModuleDatabase -L ../../XEngine_ModuleProtocol -L ../../XEngine_ModuleSystem -L ../../XEngine_ModuleHelp -L ../../XEngine_ModulePlugin \
7-
-L ../../XEngine_Depend/XEngine_Module/jsoncpp -L ../../XEngine_Depend/XEngine_Module/XEngine_InfoReport \
8-
-L ../../XEngine_DBDepend/XEngine_IPMacData/XEngine_Source/XEngine_APIModuleIPMac -L ../../XEngine_DBDepend/XEngine_PhoneData/Source/C/XEngine_APIModulePhone
7+
-L ../../XEngine_DependLibrary/XEngine_OPenSource/XEngine_Module/jsoncpp -L ../../XEngine_DependLibrary/XEngine_OPenSource/XEngine_Module/XEngine_InfoReport \
8+
-L ../../XEngine_DependLibrary/XEngine_IPMacData/XEngine_Source/XEngine_APIModuleIPMac -L ../../XEngine_DependLibrary/XEngine_PhoneData/Source/C/XEngine_APIModulePhone
99
LIB = -lXEngine_BaseSafe -lXEngine_BaseLib -lXEngine_Algorithm -lXEngine_Core -lXEngine_ManagePool -lXEngine_Cryption -lXClient_Stream -lXClient_APIHelp -lNetHelp_APIAddr -lHelpComponents_XLog -lRfcComponents_HttpProtocol -lRfcComponents_NatProtocol -lRfcComponents_NTPProtocol -lXEngine_ProcFile -lXEngine_SystemApi -lXEngine_AVHelp -lXEngine_VideoCodec -lXEngine_AudioCodec -lXEngine_AVCollect \
1010
-lXEngine_ModuleConfigure -lXEngine_ModuleDatabase -lXEngine_ModuleProtocol -lXEngine_ModuleSystem -lXEngine_ModuleHelp -lXEngine_ModulePlugin \
1111
-ljsoncpp -lXEngine_InfoReport \

0 commit comments

Comments
 (0)