Add Windows build to GitHub Actions workflow - #383
Merged
Conversation
msteveb
force-pushed
the
rebase-on-master
branch
3 times, most recently
from
July 16, 2026 04:42
5f053df to
386d67f
Compare
Make event-15.1 test more resilient to timing variations. Signed-off-by: Steve Bennett <steveb@workware.net.au>
Adds a new build-windows job that runs on windows-latest using MSYS2 MinGW32, mirroring the existing AppVeyor configuration. The Linux job is renamed to build-linux for clarity. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Signed-off-by: Steve Bennett <steveb@workware.net.au>
msteveb
force-pushed
the
rebase-on-master
branch
from
July 16, 2026 04:52
386d67f to
7a1d831
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
Adds a Windows build job to the GitHub Actions CI workflow using MSYS2 MinGW32, matching the configuration from the existing AppVeyor setup.
Changes
windows-latestusing MSYS2 MinGW32 environment with the following:--ssl --with-ext='sqlite3 win32 zlib' --disable-docs CFLAGS=-D__MINGW_USE_VC2005_COMPATRationale
Previously, Windows builds were only tested via AppVeyor. This adds Windows CI directly to GitHub Actions, providing consistent cross-platform testing alongside the Linux builds and reducing reliance on external CI services.
The configuration mirrors the existing AppVeyor setup to ensure compatibility across both systems.