agora inbox for pgsql-hackers@postgresql.orghelp / color / mirror / Atom feed
[PATCH v3 2/3] remove lo_hton64() and lo_ntoh64() 249+ messages / 2 participants [nested] [flat]
* [PATCH v3 2/3] remove lo_hton64() and lo_ntoh64() @ 2026-06-02 17:22 Reviewer <review@example.com> 0 siblings, 0 replies; 249+ messages in thread From: Reviewer @ 2026-06-02 17:22 UTC (permalink / raw) --- src/interfaces/libpq/fe-lobj.c | 58 +++------------------------------- 1 file changed, 4 insertions(+), 54 deletions(-) diff --git a/src/interfaces/libpq/fe-lobj.c b/src/interfaces/libpq/fe-lobj.c index 1660c969f58..42b2a36bda9 100644 --- a/src/interfaces/libpq/fe-lobj.c +++ b/src/interfaces/libpq/fe-lobj.c @@ -43,8 +43,6 @@ static int lo_initialize(PGconn *conn); static Oid lo_import_internal(PGconn *conn, const char *filename, Oid oid); -static int64_t lo_hton64(int64_t host64); -static int64_t lo_ntoh64(int64_t net64); /* * lo_open @@ -213,7 +211,7 @@ lo_truncate64(PGconn *conn, int fd, int64_t len) argv[0].len = 4; argv[0].u.integer = fd; - len = lo_hton64(len); + len = pg_hton64(len); argv[1].isint = 0; argv[1].len = 8; argv[1].u.ptr = (int *) &len; @@ -403,7 +401,7 @@ lo_lseek64(PGconn *conn, int fd, int64_t offset, int whence) argv[0].len = 4; argv[0].u.integer = fd; - offset = lo_hton64(offset); + offset = pg_hton64(offset); argv[1].isint = 0; argv[1].len = 8; argv[1].u.ptr = (int *) &offset; @@ -417,7 +415,7 @@ lo_lseek64(PGconn *conn, int fd, int64_t offset, int whence) if (PQresultStatus(res) == PGRES_COMMAND_OK && result_len == 8) { PQclear(res); - return lo_ntoh64(retval); + return pg_ntoh64(retval); } else { @@ -571,7 +569,7 @@ lo_tell64(PGconn *conn, int fd) if (PQresultStatus(res) == PGRES_COMMAND_OK && result_len == 8) { PQclear(res); - return lo_ntoh64(retval); + return pg_ntoh64(retval); } else { @@ -1014,51 +1012,3 @@ lo_initialize(PGconn *conn) conn->lobjfuncs = lobjfuncs; return 0; } - -/* - * lo_hton64 - * converts a 64-bit integer from host byte order to network byte order - */ -static int64_t -lo_hton64(int64_t host64) -{ - union - { - int64 i64; - uint32 i32[2]; - } swap; - uint32 t; - - /* High order half first, since we're doing MSB-first */ - t = (uint32) (host64 >> 32); - swap.i32[0] = pg_hton32(t); - - /* Now the low order half */ - t = (uint32) host64; - swap.i32[1] = pg_hton32(t); - - return swap.i64; -} - -/* - * lo_ntoh64 - * converts a 64-bit integer from network byte order to host byte order - */ -static int64_t -lo_ntoh64(int64_t net64) -{ - union - { - int64 i64; - uint32 i32[2]; - } swap; - int64 result; - - swap.i64 = net64; - - result = (uint32) pg_ntoh32(swap.i32[0]); - result <<= 32; - result |= (uint32) pg_ntoh32(swap.i32[1]); - - return result; -} -- 2.50.1 (Apple Git-155) --6CoALBM/+cswbGQ8 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=v3-0003-add-helper-functions-for-fast-path-arg-setup.patch ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
* [PATCH v13a 6/9] ci: Use optimized build for mingw @ 2026-06-11 04:01 Andres Freund <andres@anarazel.de> 0 siblings, 0 replies; 249+ messages in thread From: Andres Freund @ 2026-06-11 04:01 UTC (permalink / raw) The test runtime dominates over the compile time on GHA. Note that we just need to remove options, as postgres's default is debugoptimized. Discussion: https://postgr.es/m/a2ejn7lfqolutzz7kozalbhy3bixdrujb4buc3pgbtlk4am2ba@wbv6v7riia33 --- .github/workflows/pg-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pg-ci.yml b/.github/workflows/pg-ci.yml index 41a807af801..ab7950f6f14 100644 --- a/.github/workflows/pg-ci.yml +++ b/.github/workflows/pg-ci.yml @@ -1127,7 +1127,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}} \ -- 2.54.0.450.g9ac3f193c0 --mr2uqtieh2e2xvha Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="v13a-0007-ci-get-build-test-concurrency-from-environment.patch" ^ permalink raw reply [nested|flat] 249+ messages in thread
end of thread, other threads:[~2026-06-11 04:01 UTC | newest] Thread overview: 249+ messages (download: mbox mbox.gz follow: Atom feed) -- links below jump to the message on this page -- 2026-06-02 17:22 [PATCH v3 2/3] remove lo_hton64() and lo_ntoh64() Reviewer <review@example.com> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de> 2026-06-11 04:01 [PATCH v13a 6/9] ci: Use optimized build for mingw Andres Freund <andres@anarazel.de>
This inbox is served by agora; see mirroring instructions for how to clone and mirror all data and code used for this inbox