The following changes since commit 954b86f71b0718943796192be1a89ffb0da5a97c: ci: upload tagged GitHub Actions Windows installers as releases (2023-05-24 09:58:11 -0400) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 4820d46cef75f806d8c95afaa77f86ded4e3603e: ci: disable tls for msys2 builds (2023-05-26 20:09:53 -0400) ---------------------------------------------------------------- Vincent Fu (1): ci: disable tls for msys2 builds ci/actions-build.sh | 3 +++ 1 file changed, 3 insertions(+) --- Diff of recent changes: diff --git a/ci/actions-build.sh b/ci/actions-build.sh index 351b8d18..31d3446c 100755 --- a/ci/actions-build.sh +++ b/ci/actions-build.sh @@ -53,6 +53,9 @@ main() { "x86_64") ;; esac + if [ "${CI_TARGET_BUILD}" = "windows-msys2-64" ]; then + configure_flags+=("--disable-tls") + fi ;; esac configure_flags+=(--extra-cflags="${extra_cflags}")