Skip to content

Commit f27db90

Browse files
committed
added:x64 test for msbuild.yml
1 parent ac17772 commit f27db90

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/msbuild.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,32 @@ jobs:
8282
./XEngine_HttpApp -t
8383
./XEngine_SimpleApp -t
8484
./XEngine_WebSocketApp -t
85+
shell: pwsh
86+
- name: Conditional Step for x64 Release
87+
if: matrix.configuration == 'Release' && matrix.platform == 'x64'
88+
run: |
89+
cp -r XEngine_Source/x64/Release/*.dll XEngine_Release/
90+
cp -r XEngine_Source/x64/Release/*.exe XEngine_Release/
91+
cp -r XEngine_Source/VSCopy_x64.bat XEngine_Release/
92+
cd XEngine_Release
93+
./VSCopy_x64.bat
94+
./XEngine_CenterApp -t
95+
./XEngine_Http2App -t
96+
./XEngine_HttpApp -t
97+
./XEngine_SimpleApp -t
98+
./XEngine_WebSocketApp -t
99+
shell: pwsh
100+
- name: Conditional Step for x64 Debug
101+
if: matrix.configuration == 'Debug' && matrix.platform == 'x64'
102+
run: |
103+
cp -r XEngine_Source/x64/Debug/*.dll XEngine_Release/
104+
cp -r XEngine_Source/x64/Debug/*.exe XEngine_Release/
105+
cp -r XEngine_Source/VSCopy_x64.bat XEngine_Release/
106+
cd XEngine_Release
107+
./VSCopy_x64.bat
108+
./XEngine_CenterApp -t
109+
./XEngine_Http2App -t
110+
./XEngine_HttpApp -t
111+
./XEngine_SimpleApp -t
112+
./XEngine_WebSocketApp -t
85113
shell: pwsh

0 commit comments

Comments
 (0)