From: Andres Freund Date: Fri, 17 Jul 2026 15:43:52 +0000 (-0400) Subject: ci: Use optimized build for mingw X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cce2bbbfd3cb8df4844013d20c3e08cef6d29084;p=thirdparty%2Fpostgresql.git ci: Use optimized build for mingw The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Reviewed-by: Nazir Bilal Yavuz Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 Backpatch-through: 19, where GHA CI was added --- diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 5bc5292d2a5..b1731cf40cd 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1123,7 +1123,7 @@ jobs: run: | meson setup \ ${{env.MESON_COMMON_PG_CONFIG_ARGS}} \ - -Ddebug=true -Doptimization=g -Db_pch=true \ + -Db_pch=true \ ${{env.MESON_COMMON_FEATURES}} \ ${{env.MESON_FEATURES}} \ -DTAR=${{env.TAR}} \