Skip to content

Commit

Permalink
Update Github Actions workflow for Windows builds
Browse files Browse the repository at this point in the history
* Remove 32-bit builds. MSYS2 has deprecated many 32-bit packages.
* Add CLANG builds
  • Loading branch information
leonlynch committed Feb 3, 2024
1 parent 64cf1c0 commit 39e3b5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/windows-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
- { sys: mingw64, env: x86_64, build_type: "Release", lib_type: "static", shared_libs: "NO", build_emv_tool: NO }
- { sys: mingw64, env: x86_64, build_type: "Debug", lib_type: "dll", shared_libs: "YES", build_emv_tool: YES }
- { sys: mingw64, env: x86_64, build_type: "Release", lib_type: "static", shared_libs: "NO", build_emv_tool: YES }
- { sys: mingw32, env: i686, build_type: "Debug", lib_type: "static", shared_libs: "NO", build_emv_tool: YES }
- { sys: mingw32, env: i686, build_type: "Release", lib_type: "dll", shared_libs: "YES", build_emv_tool: YES }
- { sys: clang64, env: clang-x86_64, build_type: "Debug", lib_type: "static", shared_libs: "NO", build_emv_tool: YES }
- { sys: clang64, env: clang-x86_64, build_type: "Release", lib_type: "dll", shared_libs: "YES", build_emv_tool: YES }

name: Windows MSYS2 ${{matrix.sys}} build (${{ matrix.lib_type }}/${{ matrix.build_type }})

Expand Down

0 comments on commit 39e3b5e

Please sign in to comment.