Require callers of coerce_to_domain() to supply base type/typmod.
[pgsql.git] / .cirrus.tasks.yml
blob18e944ca89df459c1ef8e421a08543ede754481a
1 # CI configuration file for CI utilizing cirrus-ci.org
3 # For instructions on how to enable the CI integration in a repository and
4 # further details, see src/tools/ci/README
7 env:
8   # The lower depth accelerates git clone. Use a bit of depth so that
9   # concurrent tasks and retrying older jobs have a chance of working.
10   CIRRUS_CLONE_DEPTH: 500
11   # Useful to be able to analyse what in a script takes long
12   CIRRUS_LOG_TIMESTAMP: true
14   CCACHE_MAXSIZE: "250M"
16   # target to test, for all but windows
17   CHECK: check-world PROVE_FLAGS=$PROVE_FLAGS
18   CHECKFLAGS: -Otarget
19   PROVE_FLAGS: --timer
20   MTEST_ARGS: --print-errorlogs --no-rebuild -C build
21   PGCTLTIMEOUT: 120 # avoids spurious failures during parallel tests
22   TEMP_CONFIG: ${CIRRUS_WORKING_DIR}/src/tools/ci/pg_ci_base.conf
23   PG_TEST_EXTRA: kerberos ldap ssl libpq_encryption load_balance
26 # What files to preserve in case tests fail
27 on_failure_ac: &on_failure_ac
28   log_artifacts:
29     paths:
30       - "**/*.log"
31       - "**/*.diffs"
32       - "**/regress_log_*"
33     type: text/plain
35 on_failure_meson: &on_failure_meson
36   testrun_artifacts:
37     paths:
38       - "build*/testrun/**/*.log"
39       - "build*/testrun/**/*.diffs"
40       - "build*/testrun/**/regress_log_*"
41     type: text/plain
43   # In theory it'd be nice to upload the junit files meson generates, so that
44   # cirrus will nicely annotate the commit. Unfortunately the files don't
45   # contain identifiable file + line numbers right now, so the annotations
46   # don't end up useful. We could probably improve on that with a some custom
47   # conversion script, but ...
48   meson_log_artifacts:
49     path: "build*/meson-logs/*.txt"
50     type: text/plain
53 # To avoid unnecessarily spinning up a lot of VMs / containers for entirely
54 # broken commits, have a minimal task that all others depend on.
55 task:
56   name: SanityCheck
58   # If a specific OS is requested, don't run the sanity check. This shortens
59   # push-wait-for-ci cycle time a bit when debugging operating system specific
60   # failures. Uses skip instead of only_if, as cirrus otherwise warns about
61   # only_if conditions not matching.
62   skip: $CIRRUS_CHANGE_MESSAGE =~ '.*\nci-os-only:.*'
64   env:
65     CPUS: 4
66     BUILD_JOBS: 8
67     TEST_JOBS: 8
68     IMAGE_FAMILY: pg-ci-bookworm
69     CCACHE_DIR: ${CIRRUS_WORKING_DIR}/ccache_dir
70     # no options enabled, should be small
71     CCACHE_MAXSIZE: "150M"
73   # While containers would start up a bit quicker, building is a bit
74   # slower. This way we don't have to maintain a container image.
75   <<: *linux_task_template
77   ccache_cache:
78     folder: $CCACHE_DIR
80   create_user_script: |
81     useradd -m postgres
82     chown -R postgres:postgres .
83     mkdir -p ${CCACHE_DIR}
84     chown -R postgres:postgres ${CCACHE_DIR}
85     echo '* - memlock 134217728' > /etc/security/limits.d/postgres.conf
86     su postgres -c "ulimit -l -H && ulimit -l -S"
87     # Can't change container's kernel.core_pattern. Postgres user can't write
88     # to / normally. Change that.
89     chown root:postgres /
90     chmod g+rwx /
92   configure_script: |
93     su postgres <<-EOF
94       meson setup \
95         --buildtype=debug \
96         --auto-features=disabled \
97         -Dtap_tests=enabled \
98         build
99     EOF
100   build_script: |
101     su postgres <<-EOF
102       ninja -C build -j${BUILD_JOBS}
103     EOF
104   upload_caches: ccache
106   # Run a minimal set of tests. The main regression tests take too long for
107   # this purpose. For now this is a random quick pg_regress style test, and a
108   # tap test that exercises both a frontend binary and the backend.
109   test_minimal_script: |
110     su postgres <<-EOF
111       ulimit -c unlimited
112       meson test $MTEST_ARGS --suite setup
113       meson test $MTEST_ARGS --num-processes ${TEST_JOBS} \
114         cube/regress pg_ctl/001_start_stop
115     EOF
117   on_failure:
118     <<: *on_failure_meson
119     cores_script: |
120       mkdir -m 770 /tmp/cores
121       find / -maxdepth 1 -type f -name 'core*' -exec mv '{}' /tmp/cores/ \;
122       src/tools/ci/cores_backtrace.sh linux /tmp/cores
125 task:
126   name: FreeBSD - 13 - Meson
128   env:
129     CPUS: 4
130     BUILD_JOBS: 4
131     TEST_JOBS: 8
132     IMAGE_FAMILY: pg-ci-freebsd-13
133     DISK_SIZE: 50
135     CCACHE_DIR: /tmp/ccache_dir
136     CPPFLAGS: -DRELCACHE_FORCE_RELEASE -DENFORCE_REGRESSION_TEST_NAME_RESTRICTIONS
137     CFLAGS: -Og -ggdb
139     PG_TEST_INITDB_EXTRA_OPTS: -c debug_copy_parse_plan_trees=on -c debug_write_read_parse_plan_trees=on -c debug_raw_expression_coverage_test=on
140     PG_TEST_PG_UPGRADE_MODE: --link
142   <<: *freebsd_task_template
144   depends_on: SanityCheck
145   only_if: $CIRRUS_CHANGE_MESSAGE !=~ '.*\nci-os-only:.*' || $CIRRUS_CHANGE_MESSAGE =~ '.*\nci-os-only:[^\n]*freebsd.*'
147   sysinfo_script: |
148     id
149     uname -a
150     ulimit -a -H && ulimit -a -S
151     export
153   ccache_cache:
154     folder: $CCACHE_DIR
155   # Work around performance issues due to 32KB block size
156   repartition_script: src/tools/ci/gcp_freebsd_repartition.sh
157   create_user_script: |
158     pw useradd postgres
159     chown -R postgres:postgres .
160     mkdir -p ${CCACHE_DIR}
161     chown -R postgres:postgres ${CCACHE_DIR}
162   setup_core_files_script: |
163     mkdir -m 770 /tmp/cores
164     chown root:postgres /tmp/cores
165     sysctl kern.corefile='/tmp/cores/%N.%P.core'
166   setup_additional_packages_script: |
167     #pkg install -y ...
169   # NB: Intentionally build without -Dllvm. The freebsd image size is already
170   # large enough to make VM startup slow, and even without llvm freebsd
171   # already takes longer than other platforms except for windows.
172   configure_script: |
173     su postgres <<-EOF
174       meson setup \
175         --buildtype=debug \
176         -Dcassert=true -Dinjection_points=true \
177         -Duuid=bsd -Dtcl_version=tcl86 -Ddtrace=auto \
178         -Dextra_lib_dirs=/usr/local/lib -Dextra_include_dirs=/usr/local/include/ \
179         build
180     EOF
181   build_script: su postgres -c 'ninja -C build -j${BUILD_JOBS}'
182   upload_caches: ccache
184   test_world_script: |
185     su postgres <<-EOF
186       ulimit -c unlimited
187       meson test $MTEST_ARGS --num-processes ${TEST_JOBS}
188     EOF
190   # test runningcheck, freebsd chosen because it's currently fast enough
191   test_running_script: |
192     su postgres <<-EOF
193       set -e
194       ulimit -c unlimited
195       meson test $MTEST_ARGS --quiet --suite setup
196       export LD_LIBRARY_PATH="$(pwd)/build/tmp_install/usr/local/pgsql/lib/:$LD_LIBRARY_PATH"
197       mkdir -p build/testrun
198       build/tmp_install/usr/local/pgsql/bin/initdb -N build/runningcheck --no-instructions -A trust
199       echo "include '$(pwd)/src/tools/ci/pg_ci_base.conf'" >> build/runningcheck/postgresql.conf
200       build/tmp_install/usr/local/pgsql/bin/pg_ctl -c -o '-c fsync=off' -D build/runningcheck -l build/testrun/runningcheck.log start
201       meson test $MTEST_ARGS --num-processes ${TEST_JOBS} --setup running
202       build/tmp_install/usr/local/pgsql/bin/pg_ctl -D build/runningcheck stop
203     EOF
205   on_failure:
206     # if the server continues running, it often causes cirrus-ci to fail
207     # during upload, as it doesn't expect artifacts to change size
208     stop_running_script: |
209       su postgres <<-EOF
210         build/tmp_install/usr/local/pgsql/bin/pg_ctl -D build/runningcheck stop || true
211       EOF
212     <<: *on_failure_meson
213     cores_script: src/tools/ci/cores_backtrace.sh freebsd /tmp/cores
216 # configure feature flags, shared between the task running the linux tests and
217 # the CompilerWarnings task
218 LINUX_CONFIGURE_FEATURES: &LINUX_CONFIGURE_FEATURES >-
219   --with-gssapi
220   --with-icu
221   --with-ldap
222   --with-libxml
223   --with-libxslt
224   --with-llvm
225   --with-lz4
226   --with-pam
227   --with-perl
228   --with-python
229   --with-selinux
230   --with-ssl=openssl
231   --with-systemd
232   --with-tcl --with-tclconfig=/usr/lib/tcl8.6/
233   --with-uuid=ossp
234   --with-zstd
236 LINUX_MESON_FEATURES: &LINUX_MESON_FEATURES >-
237   -Dllvm=enabled
238   -Duuid=e2fs
241 task:
242   env:
243     CPUS: 4
244     BUILD_JOBS: 4
245     TEST_JOBS: 8 # experimentally derived to be a decent choice
246     IMAGE_FAMILY: pg-ci-bookworm
248     CCACHE_DIR: /tmp/ccache_dir
249     DEBUGINFOD_URLS: "https://debuginfod.debian.net"
251     # Enable a reasonable set of sanitizers. Use the linux task for that, as
252     # it's one of the fastest tasks (without sanitizers). Also several of the
253     # sanitizers work best on linux.
254     #
255     # The overhead of alignment sanitizer is low, undefined behaviour has
256     # moderate overhead. Test alignment sanitizer in the meson task, as it
257     # does both 32 and 64 bit builds and is thus more likely to expose
258     # alignment bugs.
259     #
260     # Address sanitizer in contrast is somewhat expensive. Enable it in the
261     # autoconf task, as the meson task tests both 32 and 64bit.
262     #
263     # disable_coredump=0, abort_on_error=1: for useful backtraces in case of crashes
264     # print_stacktraces=1,verbosity=2, duh
265     # detect_leaks=0: too many uninteresting leak errors in short-lived binaries
266     UBSAN_OPTIONS: print_stacktrace=1:disable_coredump=0:abort_on_error=1:verbosity=2
267     ASAN_OPTIONS: print_stacktrace=1:disable_coredump=0:abort_on_error=1:detect_leaks=0
269     # SANITIZER_FLAGS is set in the tasks below
270     CFLAGS: -Og -ggdb -fno-sanitize-recover=all $SANITIZER_FLAGS
271     CXXFLAGS: $CFLAGS
272     LDFLAGS: $SANITIZER_FLAGS
273     CC: ccache gcc
274     CXX: ccache g++
275     # GCC emits a warning for llvm-14, so switch to a newer one.
276     LLVM_CONFIG: llvm-config-16
278     LINUX_CONFIGURE_FEATURES: *LINUX_CONFIGURE_FEATURES
279     LINUX_MESON_FEATURES: *LINUX_MESON_FEATURES
281   <<: *linux_task_template
283   depends_on: SanityCheck
284   only_if: $CIRRUS_CHANGE_MESSAGE !=~ '.*\nci-os-only:.*' || $CIRRUS_CHANGE_MESSAGE =~ '.*\nci-os-only:[^\n]*linux.*'
286   ccache_cache:
287     folder: ${CCACHE_DIR}
289   sysinfo_script: |
290     id
291     uname -a
292     cat /proc/cmdline
293     ulimit -a -H && ulimit -a -S
294     export
295   create_user_script: |
296     useradd -m postgres
297     chown -R postgres:postgres .
298     mkdir -p ${CCACHE_DIR}
299     chown -R postgres:postgres ${CCACHE_DIR}
300     echo '* - memlock 134217728' > /etc/security/limits.d/postgres.conf
301     su postgres -c "ulimit -l -H && ulimit -l -S"
302   setup_core_files_script: |
303     mkdir -m 770 /tmp/cores
304     chown root:postgres /tmp/cores
305     sysctl kernel.core_pattern='/tmp/cores/%e-%s-%p.core'
307   setup_hosts_file_script: |
308     cat >> /etc/hosts <<-EOF
309       127.0.0.1 pg-loadbalancetest
310       127.0.0.2 pg-loadbalancetest
311       127.0.0.3 pg-loadbalancetest
312     EOF
314   setup_additional_packages_script: |
315     #apt-get update
316     #DEBIAN_FRONTEND=noninteractive apt-get -y install ...
318   matrix:
319     - name: Linux - Debian Bookworm - Autoconf
321       env:
322         SANITIZER_FLAGS: -fsanitize=address
323         PG_TEST_PG_COMBINEBACKUP_MODE: --copy-file-range
325       # Normally, the "relation segment" code basically has no coverage in our
326       # tests, because we (quite reasonably) don't generate tables large
327       # enough in tests. We've had plenty bugs that we didn't notice due the
328       # code not being exercised much. Thus specify a very small segment size
329       # here. Use a non-power-of-two segment size, given we currently allow
330       # that.
331       configure_script: |
332         su postgres <<-EOF
333           ./configure \
334             --enable-cassert --enable-injection-points --enable-debug \
335             --enable-tap-tests --enable-nls \
336             --with-segsize-blocks=6 \
337             \
338             ${LINUX_CONFIGURE_FEATURES} \
339             \
340             CLANG="ccache clang-16"
341         EOF
342       build_script: su postgres -c "make -s -j${BUILD_JOBS} world-bin"
343       upload_caches: ccache
345       test_world_script: |
346         su postgres <<-EOF
347           ulimit -c unlimited # default is 0
348           make -s ${CHECK} ${CHECKFLAGS} -j${TEST_JOBS}
349         EOF
351       on_failure:
352         <<: *on_failure_ac
354     - name: Linux - Debian Bookworm - Meson
356       env:
357         CCACHE_MAXSIZE: "400M" # tests two different builds
358         SANITIZER_FLAGS: -fsanitize=alignment,undefined
360       configure_script: |
361         su postgres <<-EOF
362           meson setup \
363             --buildtype=debug \
364             -Dcassert=true -Dinjection_points=true \
365             ${LINUX_MESON_FEATURES} \
366             build
367         EOF
369       # Also build & test in a 32bit build - it's gotten rare to test that
370       # locally.
371       configure_32_script: |
372         su postgres <<-EOF
373           export CC='ccache gcc -m32'
374           meson setup \
375             --buildtype=debug \
376             -Dcassert=true -Dinjection_points=true \
377             ${LINUX_MESON_FEATURES} \
378             -Dllvm=disabled \
379             --pkg-config-path /usr/lib/i386-linux-gnu/pkgconfig/ \
380             -DPERL=perl5.36-i386-linux-gnu \
381             build-32
382         EOF
384       build_script: su postgres -c 'ninja -C build -j${BUILD_JOBS}'
385       build_32_script: su postgres -c 'ninja -C build-32 -j${BUILD_JOBS}'
387       upload_caches: ccache
389       test_world_script: |
390         su postgres <<-EOF
391           ulimit -c unlimited
392           meson test $MTEST_ARGS --num-processes ${TEST_JOBS}
393         EOF
394         # so that we don't upload 64bit logs if 32bit fails
395         rm -rf build/
397       # There's currently no coverage of icu with LANG=C in the buildfarm. We
398       # can easily provide some here by running one of the sets of tests that
399       # way. Newer versions of python insist on changing the LC_CTYPE away
400       # from C, prevent that with PYTHONCOERCECLOCALE.
401       test_world_32_script: |
402         su postgres <<-EOF
403           ulimit -c unlimited
404           PYTHONCOERCECLOCALE=0 LANG=C meson test $MTEST_ARGS -C build-32 --num-processes ${TEST_JOBS}
405         EOF
407       on_failure:
408         <<: *on_failure_meson
410   on_failure:
411     cores_script: src/tools/ci/cores_backtrace.sh linux /tmp/cores
414 task:
415   name: macOS - Sonoma - Meson
417   env:
418     CPUS: 4 # always get that much for cirrusci macOS instances
419     BUILD_JOBS: $CPUS
420     # Test performance regresses noticably when using all cores. 8 seems to
421     # work OK. See
422     # https://postgr.es/m/20220927040208.l3shfcidovpzqxfh%40awork3.anarazel.de
423     TEST_JOBS: 8
424     IMAGE: ghcr.io/cirruslabs/macos-runner:sonoma
426     CIRRUS_WORKING_DIR: ${HOME}/pgsql/
427     CCACHE_DIR: ${HOME}/ccache
428     MACPORTS_CACHE: ${HOME}/macports-cache
430     MACOS_PACKAGE_LIST: >-
431       ccache
432       icu
433       kerberos5
434       lz4
435       meson
436       openldap
437       openssl
438       p5.34-io-tty
439       p5.34-ipc-run
440       python312
441       tcl
442       zstd
444     CC: ccache cc
445     CXX: ccache c++
446     CFLAGS: -Og -ggdb
447     CXXFLAGS: -Og -ggdb
449     PG_TEST_PG_UPGRADE_MODE: --clone
450     PG_TEST_PG_COMBINEBACKUP_MODE: --clone
452   <<: *macos_task_template
454   depends_on: SanityCheck
455   only_if: $CIRRUS_CHANGE_MESSAGE !=~ '.*\nci-os-only:.*' || $CIRRUS_CHANGE_MESSAGE =~ '.*\nci-os-only:[^\n]*(macos|darwin|osx).*'
457   sysinfo_script: |
458     id
459     uname -a
460     ulimit -a -H && ulimit -a -S
461     export
463   setup_core_files_script:
464     - mkdir ${HOME}/cores
465     - sudo sysctl kern.corefile="${HOME}/cores/core.%P"
467   # Use macports, even though homebrew is installed. The installation
468   # of the additional packages we need would take quite a while with
469   # homebrew, even if we cache the downloads. We can't cache all of
470   # homebrew, because it's already large. So we use macports. To cache
471   # the installation we create a .dmg file that we mount if it already
472   # exists.
473   # XXX: The reason for the direct p5.34* references is that we'd need
474   # the large macport tree around to figure out that p5-io-tty is
475   # actually p5.34-io-tty. Using the unversioned name works, but
476   # updates macports every time.
477   macports_cache:
478     folder: ${MACPORTS_CACHE}
479     fingerprint_script: |
480       # Reinstall packages if the OS major version, the list of the packages
481       # to install or the MacPorts install script changes.
482       sw_vers -productVersion | sed 's/\..*//'
483       echo $MACOS_PACKAGE_LIST
484       md5 src/tools/ci/ci_macports_packages.sh
485     reupload_on_changes: true
486   setup_additional_packages_script: |
487     sh src/tools/ci/ci_macports_packages.sh $MACOS_PACKAGE_LIST
488     # system python doesn't provide headers
489     sudo /opt/local/bin/port select python3 python312
490     # Make macports install visible for subsequent steps
491     echo PATH=/opt/local/sbin/:/opt/local/bin/:$PATH >> $CIRRUS_ENV
492   upload_caches: macports
494   ccache_cache:
495     folder: $CCACHE_DIR
496   configure_script: |
497     export PKG_CONFIG_PATH="/opt/local/lib/pkgconfig/"
498     meson setup \
499       --buildtype=debug \
500       -Dextra_include_dirs=/opt/local/include \
501       -Dextra_lib_dirs=/opt/local/lib \
502       -Dcassert=true -Dinjection_points=true \
503       -Duuid=e2fs -Ddtrace=auto \
504       build
506   build_script: ninja -C build -j${BUILD_JOBS}
507   upload_caches: ccache
509   test_world_script: |
510     ulimit -c unlimited # default is 0
511     ulimit -n 1024 # default is 256, pretty low
512     meson test $MTEST_ARGS --num-processes ${TEST_JOBS}
514   on_failure:
515     <<: *on_failure_meson
516     cores_script: src/tools/ci/cores_backtrace.sh macos "${HOME}/cores"
519 WINDOWS_ENVIRONMENT_BASE: &WINDOWS_ENVIRONMENT_BASE
520   env:
521     # Half the allowed per-user CPU cores
522     CPUS: 4
524     # The default cirrus working dir is in a directory msbuild complains about
525     CIRRUS_WORKING_DIR: "c:/cirrus"
526     # git's tar doesn't deal with drive letters, see
527     # https://postgr.es/m/b6782dc3-a7b0-ed56-175f-f8f54cb08d67%40dunslane.net
528     TAR: "c:/windows/system32/tar.exe"
529     # Avoids port conflicts between concurrent tap test runs
530     PG_TEST_USE_UNIX_SOCKETS: 1
531     PG_REGRESS_SOCK_DIR: "c:/cirrus/"
532     DISK_SIZE: 50
533     IMAGE_FAMILY: pg-ci-windows-ci
535   sysinfo_script: |
536     chcp
537     systeminfo
538     powershell -Command get-psdrive -psprovider filesystem
539     set
542 task:
543   name: Windows - Server 2019, VS 2019 - Meson & ninja
544   << : *WINDOWS_ENVIRONMENT_BASE
546   env:
547     TEST_JOBS: 8 # wild guess, data based value welcome
549     # Cirrus defaults to SetErrorMode(SEM_NOGPFAULTERRORBOX | ...). That
550     # prevents crash reporting from working unless binaries do SetErrorMode()
551     # themselves. Furthermore, it appears that either python or, more likely,
552     # the C runtime has a bug where SEM_NOGPFAULTERRORBOX can very
553     # occasionally *trigger* a crash on process exit - which is hard to debug,
554     # given that it explicitly prevents crash dumps from working...
555     # 0x8001 is SEM_FAILCRITICALERRORS | SEM_NOOPENFILEERRORBOX
556     CIRRUS_WINDOWS_ERROR_MODE: 0x8001
558   <<: *windows_task_template
560   depends_on: SanityCheck
561   only_if: $CIRRUS_CHANGE_MESSAGE !=~ '.*\nci-os-only:.*' || $CIRRUS_CHANGE_MESSAGE =~ '.*\nci-os-only:[^\n]*windows.*'
563   setup_additional_packages_script: |
564     REM choco install -y --no-progress ...
566   setup_hosts_file_script: |
567     echo 127.0.0.1 pg-loadbalancetest >> c:\Windows\System32\Drivers\etc\hosts
568     echo 127.0.0.2 pg-loadbalancetest >> c:\Windows\System32\Drivers\etc\hosts
569     echo 127.0.0.3 pg-loadbalancetest >> c:\Windows\System32\Drivers\etc\hosts
570     type c:\Windows\System32\Drivers\etc\hosts
572   # Use /DEBUG:FASTLINK to avoid high memory usage during linking
573   configure_script: |
574     vcvarsall x64
575     meson setup --backend ninja --buildtype debug -Dc_link_args=/DEBUG:FASTLINK -Dcassert=true -Dinjection_points=true -Db_pch=true -Dextra_lib_dirs=c:\openssl\1.1\lib -Dextra_include_dirs=c:\openssl\1.1\include -DTAR=%TAR% build
577   build_script: |
578     vcvarsall x64
579     ninja -C build
581   check_world_script: |
582     vcvarsall x64
583     meson test %MTEST_ARGS% --num-processes %TEST_JOBS%
585   on_failure:
586     <<: *on_failure_meson
587     crashlog_artifacts:
588       path: "crashlog-*.txt"
589       type: text/plain
592 task:
593   << : *WINDOWS_ENVIRONMENT_BASE
594   name: Windows - Server 2019, MinGW64 - Meson
596   # due to resource constraints we don't run this task by default for now
597   trigger_type: manual
598   # worth using only_if despite being manual, otherwise this task will show up
599   # when e.g. ci-os-only: linux is used.
600   only_if: $CIRRUS_CHANGE_MESSAGE !=~ '.*\nci-os-only:.*' || $CIRRUS_CHANGE_MESSAGE =~ '.*\nci-os-only:[^\n]*mingw.*'
601   # otherwise it'll be sorted before other tasks
602   depends_on: SanityCheck
604   env:
605     TEST_JOBS: 4 # higher concurrency causes occasional failures
606     CCACHE_DIR: C:/msys64/ccache
607     CCACHE_MAXSIZE: "500M"
608     CCACHE_SLOPPINESS: pch_defines,time_macros
609     CCACHE_DEPEND: 1
610     # for some reason mingw plpython cannot find its installation without this
611     PYTHONHOME: C:/msys64/ucrt64
612     # prevents MSYS bash from resetting error mode
613     MSYS: winjitdebug
614     # Start bash in current working directory
615     CHERE_INVOKING: 1
616     BASH: C:\msys64\usr\bin\bash.exe -l
618   <<: *windows_task_template
620   ccache_cache:
621     folder: ${CCACHE_DIR}
623   setup_additional_packages_script: |
624     REM C:\msys64\usr\bin\pacman.exe -S --noconfirm ...
626   mingw_info_script: |
627     %BASH% -c "where gcc"
628     %BASH% -c "gcc --version"
629     %BASH% -c "where perl"
630     %BASH% -c "perl --version"
632   # disable -Dnls as the number of files it creates cause a noticable slowdown
633   configure_script: |
634     %BASH% -c "meson setup -Ddebug=true -Doptimization=g -Dcassert=true -Dinjection_points=true -Db_pch=true -Dnls=disabled -DTAR=%TAR% build"
636   build_script: |
637     %BASH% -c "ninja -C build"
639   upload_caches: ccache
641   test_world_script: |
642     %BASH% -c "meson test %MTEST_ARGS% --num-processes %TEST_JOBS%"
644   on_failure:
645     <<: *on_failure_meson
646     crashlog_artifacts:
647       path: "crashlog-*.txt"
648       type: text/plain
651 task:
652   name: CompilerWarnings
654   # To limit unnecessary work only run this once the SanityCheck
655   # succeeds. This is particularly important for this task as we intentionally
656   # use always: to continue after failures. Task that did not run count as a
657   # success, so we need to recheck SanityChecks's condition here ...
658   depends_on: SanityCheck
659   only_if: $CIRRUS_CHANGE_MESSAGE !=~ '.*\nci-os-only:.*'
661   env:
662     CPUS: 4
663     BUILD_JOBS: 4
664     IMAGE_FAMILY: pg-ci-bookworm
666     # Use larger ccache cache, as this task compiles with multiple compilers /
667     # flag combinations
668     CCACHE_MAXSIZE: "1G"
669     CCACHE_DIR: "/tmp/ccache_dir"
671     LINUX_CONFIGURE_FEATURES: *LINUX_CONFIGURE_FEATURES
672     LINUX_MESON_FEATURES: *LINUX_MESON_FEATURES
674     # GCC emits a warning for llvm-14, so switch to a newer one.
675     LLVM_CONFIG: llvm-config-16
677   <<: *linux_task_template
679   sysinfo_script: |
680     id
681     uname -a
682     cat /proc/cmdline
683     ulimit -a -H && ulimit -a -S
684     gcc -v
685     clang -v
686     export
688   ccache_cache:
689     folder: $CCACHE_DIR
691   setup_additional_packages_script: |
692     #apt-get update
693     #DEBIAN_FRONTEND=noninteractive apt-get -y install ...
695   ###
696   # Test that code can be built with gcc/clang without warnings
697   ###
699   setup_script: echo "COPT=-Werror" > src/Makefile.custom
701   # Trace probes have a history of getting accidentally broken. Use the
702   # different compilers to build with different combinations of dtrace on/off
703   # and cassert on/off.
705   # gcc, cassert off, dtrace on
706   always:
707     gcc_warning_script: |
708       time ./configure \
709         --cache gcc.cache \
710         --enable-dtrace \
711         ${LINUX_CONFIGURE_FEATURES} \
712         CC="ccache gcc" CXX="ccache g++" CLANG="ccache clang-16"
713       make -s -j${BUILD_JOBS} clean
714       time make -s -j${BUILD_JOBS} world-bin
716   # gcc, cassert on, dtrace off
717   always:
718     gcc_a_warning_script: |
719       time ./configure \
720         --cache gcc.cache \
721         --enable-cassert \
722         ${LINUX_CONFIGURE_FEATURES} \
723         CC="ccache gcc" CXX="ccache g++" CLANG="ccache clang-16"
724       make -s -j${BUILD_JOBS} clean
725       time make -s -j${BUILD_JOBS} world-bin
727   # clang, cassert off, dtrace off
728   always:
729     clang_warning_script: |
730       time ./configure \
731         --cache clang.cache \
732         ${LINUX_CONFIGURE_FEATURES} \
733         CC="ccache clang" CXX="ccache clang++-16" CLANG="ccache clang-16"
734       make -s -j${BUILD_JOBS} clean
735       time make -s -j${BUILD_JOBS} world-bin
737   # clang, cassert on, dtrace on
738   always:
739     clang_a_warning_script: |
740       time ./configure \
741         --cache clang.cache \
742         --enable-cassert \
743         --enable-dtrace \
744         ${LINUX_CONFIGURE_FEATURES} \
745         CC="ccache clang" CXX="ccache clang++-16" CLANG="ccache clang-16"
746       make -s -j${BUILD_JOBS} clean
747       time make -s -j${BUILD_JOBS} world-bin
749   # cross-compile to windows
750   always:
751     mingw_cross_warning_script: |
752       time ./configure \
753         --host=x86_64-w64-mingw32 \
754         --enable-cassert \
755         --without-icu \
756         CC="ccache x86_64-w64-mingw32-gcc" \
757         CXX="ccache x86_64-w64-mingw32-g++"
758       make -s -j${BUILD_JOBS} clean
759       time make -s -j${BUILD_JOBS} world-bin
761   ###
762   # Verify docs can be built
763   ###
764   # XXX: Only do this if there have been changes in doc/ since last build
765   always:
766     docs_build_script: |
767       time ./configure \
768         --cache gcc.cache \
769         CC="ccache gcc" CXX="ccache g++" CLANG="ccache clang-16"
770       make -s -j${BUILD_JOBS} clean
771       time make -s -j${BUILD_JOBS} -C doc
773   ###
774   # Verify headerscheck / cpluspluscheck succeed
775   #
776   # - Don't use ccache, the files are uncacheable, polluting ccache's
777   #   cache
778   # - Use -fmax-errors, as particularly cpluspluscheck can be very verbose
779   # - XXX have to disable ICU to avoid errors:
780   #   https://postgr.es/m/20220323002024.f2g6tivduzrktgfa%40alap3.anarazel.de
781   ###
782   always:
783     headers_headerscheck_script: |
784       time ./configure \
785         ${LINUX_CONFIGURE_FEATURES} \
786         --without-icu \
787         --quiet \
788         CC="gcc" CXX"=g++" CLANG="clang-16"
789       make -s -j${BUILD_JOBS} clean
790       time make -s headerscheck EXTRAFLAGS='-fmax-errors=10'
791     headers_cpluspluscheck_script: |
792       time make -s cpluspluscheck EXTRAFLAGS='-fmax-errors=10'
794   always:
795     upload_caches: ccache