Skip to content

Commit 65582d5

Browse files
Added build for x86
1 parent 8d35b98 commit 65582d5

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

.github/workflows/build.yml

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,32 @@ jobs:
8484
working-directory: ./build/Release
8585
run: |
8686
file "stormlib.dll"
87-
file "stormlib.dll" |grep "x86-64"
87+
file "stormlib.dll" |grep "x86-64"
88+
89+
windows-latest-x86:
90+
if: true
91+
runs-on: windows-latest
92+
93+
steps:
94+
- uses: actions/checkout@v4
95+
96+
- uses: TheMrMilchmann/setup-msvc-dev@v3
97+
with:
98+
arch: x86
99+
100+
- name: Cmake
101+
run: cmake -B build -D CMAKE_BUILD_TYPE=$BUILD_TYPE -D BUILD_SHARED_LIBS=ON
102+
103+
- name: Build
104+
run: cmake --build build --config Release
105+
106+
- name: Debug
107+
shell: bash
108+
run: ls -la build
109+
110+
- name: Check PE
111+
shell: bash
112+
working-directory: ./build/Release
113+
run: |
114+
file "stormlib.dll"
115+
file "stormlib.dll" |grep "x86-64"

0 commit comments

Comments
 (0)