diff options
author | Ladislav Zezula <zezula@volny.cz> | 2025-08-06 09:38:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-06 09:38:55 +0200 |
commit | 36d76cddbfa02624617bb112da0b72e919f0cf33 (patch) | |
tree | cbe34ab3d2d2c7ab784ba890b7d2a3436bb6795b /.github/workflows/build.yml | |
parent | b41cda40f9c3fbdb802cf63e739425cd805eecaa (diff) | |
parent | db410fd564af358cb7c1e2e72cdbaeaeef510e09 (diff) |
Merge pull request #393 from ladislav-zezula/LZ_BlizzardCompatibleNames
* Replaced GetLastError with SErrGetLastError
* Members of TMPQHash have now the same names like in Blizzard sources
* Fixed bug in SFileRenameFile that falsely reported an existing file if it had different locale.
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1adb852..8bfe95f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -84,4 +84,32 @@ jobs: working-directory: ./build/Release run: | file "stormlib.dll" - file "stormlib.dll" |grep "x86-64"
\ No newline at end of file + file "stormlib.dll" |grep "x86-64" + + windows-latest-x86: + if: true + runs-on: windows-latest + + steps: + - uses: actions/checkout@v4 + + - uses: TheMrMilchmann/setup-msvc-dev@v3 + with: + arch: x86 + + - name: Cmake + run: cmake -B build -D CMAKE_BUILD_TYPE=$BUILD_TYPE -D BUILD_SHARED_LIBS=ON + + - name: Build + run: cmake --build build --config Release + + - name: Debug + shell: bash + run: ls -la build + + - name: Check PE + shell: bash + working-directory: ./build/Release + run: | + file "stormlib.dll" + file "stormlib.dll" |grep "x86-64" |