Skip to content

Commit 0eaf1bc

Browse files
committed
ci:fixed running shell
1 parent a0cda44 commit 0eaf1bc

File tree

5 files changed

+12
-1
lines changed

5 files changed

+12
-1
lines changed

.github/workflows/Rocky_build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,8 @@ jobs:
9393
- name: test
9494
run: |
9595
cd XEngine_Release
96+
chmod 777 copydb.sh
97+
./copydb.sh
9698
./XEngine_APIServiceApp -t
9799
98100
- name: Upload folder as artifact with RockyLinux

.github/workflows/codeql.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ jobs:
4646
sudo apt upgrade -y
4747
sudo apt install liblua5.4-dev libopencv-dev libopencv-contrib-dev libqrencode-dev libleptonica-dev libtesseract-dev -y
4848
49+
- name: Set TERM variable
50+
run: echo "TERM=xterm" >> $GITHUB_ENV
51+
4952
- name: Set up Dependency Environment
5053
run: |
5154
cd libxengine

.github/workflows/debian_build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ jobs:
8686
- name: test
8787
run: |
8888
cd XEngine_Release
89+
chmod 777 copydb.sh
90+
./copydb.sh
8991
./XEngine_APIServiceApp -t
9092
9193
- name: Upload folder as artifact

.github/workflows/fedora_build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ jobs:
9090
- name: test
9191
run: |
9292
cd XEngine_Release
93+
chmod 777 copydb.sh
94+
./copydb.sh
9395
./XEngine_APIServiceApp -t
9496
9597
- name: Upload folder as artifact

.github/workflows/msbuild.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
cd XEngine_Release
131131
./copydb.bat
132132
./VSCopy_x86.bat
133-
# ./XEngine_HttpApp.exe -t
133+
./XEngine_HttpApp.exe -t
134134
- name: Conditional Step for x64 Release
135135
if: matrix.configuration == 'Release' && matrix.platform == 'x64'
136136
run: |
@@ -140,6 +140,7 @@ jobs:
140140
cd XEngine_Release
141141
./copydb.bat
142142
./VSCopy_x64.bat
143+
./XEngine_HttpApp.exe -t
143144
shell: pwsh
144145
- name: Conditional Step for ARM64 Release
145146
if: matrix.configuration == 'Release' && matrix.platform == 'ARM64'
@@ -150,6 +151,7 @@ jobs:
150151
cd XEngine_Release
151152
./copydb.bat
152153
./VSCopy_Arm64.bat
154+
./XEngine_HttpApp.exe -t
153155
shell: pwsh
154156

155157
- name: Upload folder as artifact with x86

0 commit comments

Comments
 (0)