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
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
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
35 on_failure_meson: &on_failure_meson
38 - "build*/testrun/**/*.log"
39 - "build*/testrun/**/*.diffs"
40 - "build*/testrun/**/regress_log_*"
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 ...
49 path: "build*/meson-logs/*.txt"
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.
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:.*'
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
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.
96 --auto-features=disabled \
102 ninja -C build -j${BUILD_JOBS}
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: |
112 meson test $MTEST_ARGS --suite setup
113 meson test $MTEST_ARGS --num-processes ${TEST_JOBS} \
114 cube/regress pg_ctl/001_start_stop
118 <<: *on_failure_meson
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
126 name: FreeBSD - 13 - Meson
132 IMAGE_FAMILY: pg-ci-freebsd-13
135 CCACHE_DIR: /tmp/ccache_dir
136 CPPFLAGS: -DRELCACHE_FORCE_RELEASE -DCOPY_PARSE_PLAN_TREES -DWRITE_READ_PARSE_PLAN_TREES -DRAW_EXPRESSION_COVERAGE_TEST -DENFORCE_REGRESSION_TEST_NAME_RESTRICTIONS
139 PG_TEST_PG_UPGRADE_MODE: --link
141 <<: *freebsd_task_template
143 depends_on: SanityCheck
144 only_if: $CIRRUS_CHANGE_MESSAGE !=~ '.*\nci-os-only:.*' || $CIRRUS_CHANGE_MESSAGE =~ '.*\nci-os-only:[^\n]*freebsd.*'
149 ulimit -a -H && ulimit -a -S
154 # Work around performance issues due to 32KB block size
155 repartition_script: src/tools/ci/gcp_freebsd_repartition.sh
156 create_user_script: |
158 chown -R postgres:postgres .
159 mkdir -p ${CCACHE_DIR}
160 chown -R postgres:postgres ${CCACHE_DIR}
161 setup_core_files_script: |
162 mkdir -m 770 /tmp/cores
163 chown root:postgres /tmp/cores
164 sysctl kern.corefile='/tmp/cores/%N.%P.core'
165 setup_additional_packages_script: |
168 # NB: Intentionally build without -Dllvm. The freebsd image size is already
169 # large enough to make VM startup slow, and even without llvm freebsd
170 # already takes longer than other platforms except for windows.
175 -Dcassert=true -Dinjection_points=true \
176 -Duuid=bsd -Dtcl_version=tcl86 -Ddtrace=auto \
177 -DPG_TEST_EXTRA="$PG_TEST_EXTRA" \
178 -Dextra_lib_dirs=/usr/local/lib -Dextra_include_dirs=/usr/local/include/ \
181 build_script: su postgres -c 'ninja -C build -j${BUILD_JOBS}'
182 upload_caches: ccache
187 meson test $MTEST_ARGS --num-processes ${TEST_JOBS}
190 # test runningcheck, freebsd chosen because it's currently fast enough
191 test_running_script: |
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
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: |
210 build/tmp_install/usr/local/pgsql/bin/pg_ctl -D build/runningcheck stop || true
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 >-
232 --with-tcl --with-tclconfig=/usr/lib/tcl8.6/
236 LINUX_MESON_FEATURES: &LINUX_MESON_FEATURES >-
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.
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
260 # Address sanitizer in contrast is somewhat expensive. Enable it in the
261 # autoconf task, as the meson task tests both 32 and 64bit.
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
272 LDFLAGS: $SANITIZER_FLAGS
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.*'
287 folder: ${CCACHE_DIR}
293 ulimit -a -H && ulimit -a -S
295 create_user_script: |
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
314 setup_additional_packages_script: |
316 #DEBIAN_FRONTEND=noninteractive apt-get -y install ...
319 - name: Linux - Debian Bookworm - Autoconf
322 SANITIZER_FLAGS: -fsanitize=address
324 # Normally, the "relation segment" code basically has no coverage in our
325 # tests, because we (quite reasonably) don't generate tables large
326 # enough in tests. We've had plenty bugs that we didn't notice due the
327 # code not being exercised much. Thus specify a very small segment size
328 # here. Use a non-power-of-two segment size, given we currently allow
333 --enable-cassert --enable-injection-points --enable-debug \
334 --enable-tap-tests --enable-nls \
335 --with-segsize-blocks=6 \
337 ${LINUX_CONFIGURE_FEATURES} \
339 CLANG="ccache clang-16"
341 build_script: su postgres -c "make -s -j${BUILD_JOBS} world-bin"
342 upload_caches: ccache
346 ulimit -c unlimited # default is 0
347 make -s ${CHECK} ${CHECKFLAGS} -j${TEST_JOBS}
353 - name: Linux - Debian Bookworm - Meson
356 CCACHE_MAXSIZE: "400M" # tests two different builds
357 SANITIZER_FLAGS: -fsanitize=alignment,undefined
363 -Dcassert=true -Dinjection_points=true \
364 ${LINUX_MESON_FEATURES} \
365 -DPG_TEST_EXTRA="$PG_TEST_EXTRA" \
369 # Also build & test in a 32bit build - it's gotten rare to test that
371 configure_32_script: |
373 export CC='ccache gcc -m32'
376 -Dcassert=true -Dinjection_points=true \
377 ${LINUX_MESON_FEATURES} \
379 --pkg-config-path /usr/lib/i386-linux-gnu/pkgconfig/ \
380 -DPERL=perl5.36-i386-linux-gnu \
381 -DPG_TEST_EXTRA="$PG_TEST_EXTRA" \
385 build_script: su postgres -c 'ninja -C build -j${BUILD_JOBS}'
386 build_32_script: su postgres -c 'ninja -C build-32 -j${BUILD_JOBS}'
388 upload_caches: ccache
393 meson test $MTEST_ARGS --num-processes ${TEST_JOBS}
395 # so that we don't upload 64bit logs if 32bit fails
398 # There's currently no coverage of icu with LANG=C in the buildfarm. We
399 # can easily provide some here by running one of the sets of tests that
400 # way. Newer versions of python insist on changing the LC_CTYPE away
401 # from C, prevent that with PYTHONCOERCECLOCALE.
402 test_world_32_script: |
405 PYTHONCOERCECLOCALE=0 LANG=C meson test $MTEST_ARGS -C build-32 --num-processes ${TEST_JOBS}
409 <<: *on_failure_meson
412 cores_script: src/tools/ci/cores_backtrace.sh linux /tmp/cores
416 name: macOS - Sonoma - Meson
419 CPUS: 4 # always get that much for cirrusci macOS instances
421 # Test performance regresses noticably when using all cores. 8 seems to
423 # https://postgr.es/m/20220927040208.l3shfcidovpzqxfh%40awork3.anarazel.de
425 IMAGE: ghcr.io/cirruslabs/macos-runner:sonoma
427 CIRRUS_WORKING_DIR: ${HOME}/pgsql/
428 CCACHE_DIR: ${HOME}/ccache
429 MACPORTS_CACHE: ${HOME}/macports-cache
436 PG_TEST_PG_UPGRADE_MODE: --clone
438 <<: *macos_task_template
440 depends_on: SanityCheck
441 only_if: $CIRRUS_CHANGE_MESSAGE !=~ '.*\nci-os-only:.*' || $CIRRUS_CHANGE_MESSAGE =~ '.*\nci-os-only:[^\n]*(macos|darwin|osx).*'
446 ulimit -a -H && ulimit -a -S
449 setup_core_files_script:
450 - mkdir ${HOME}/cores
451 - sudo sysctl kern.corefile="${HOME}/cores/core.%P"
453 # Use macports, even though homebrew is installed. The installation
454 # of the additional packages we need would take quite a while with
455 # homebrew, even if we cache the downloads. We can't cache all of
456 # homebrew, because it's already large. So we use macports. To cache
457 # the installation we create a .dmg file that we mount if it already
459 # XXX: The reason for the direct p5.34* references is that we'd need
460 # the large macport tree around to figure out that p5-io-tty is
461 # actually p5.34-io-tty. Using the unversioned name works, but
462 # updates macports every time.
464 folder: ${MACPORTS_CACHE}
465 fingerprint_script: |
466 # Include the OS major version in the cache key. If the OS image changes
467 # to a different major version, we need to reinstall.
468 sw_vers -productVersion | sed 's/\..*//'
469 # Also start afresh if we change our MacPorts install script.
470 md5 src/tools/ci/ci_macports_packages.sh
471 reupload_on_changes: true
472 setup_additional_packages_script: |
473 sh src/tools/ci/ci_macports_packages.sh \
486 # system python doesn't provide headers
487 sudo /opt/local/bin/port select python3 python312
488 # Make macports install visible for subsequent steps
489 echo PATH=/opt/local/sbin/:/opt/local/bin/:$PATH >> $CIRRUS_ENV
490 upload_caches: macports
495 export PKG_CONFIG_PATH="/opt/local/lib/pkgconfig/"
498 -Dextra_include_dirs=/opt/local/include \
499 -Dextra_lib_dirs=/opt/local/lib \
500 -Dcassert=true -Dinjection_points=true \
501 -Duuid=e2fs -Ddtrace=auto \
502 -DPG_TEST_EXTRA="$PG_TEST_EXTRA" \
505 build_script: ninja -C build -j${BUILD_JOBS}
506 upload_caches: ccache
509 ulimit -c unlimited # default is 0
510 ulimit -n 1024 # default is 256, pretty low
511 meson test $MTEST_ARGS --num-processes ${TEST_JOBS}
514 <<: *on_failure_meson
515 cores_script: src/tools/ci/cores_backtrace.sh macos "${HOME}/cores"
518 WINDOWS_ENVIRONMENT_BASE: &WINDOWS_ENVIRONMENT_BASE
520 # Half the allowed per-user CPU cores
523 # The default cirrus working dir is in a directory msbuild complains about
524 CIRRUS_WORKING_DIR: "c:/cirrus"
525 # git's tar doesn't deal with drive letters, see
526 # https://postgr.es/m/b6782dc3-a7b0-ed56-175f-f8f54cb08d67%40dunslane.net
527 TAR: "c:/windows/system32/tar.exe"
528 # Avoids port conflicts between concurrent tap test runs
529 PG_TEST_USE_UNIX_SOCKETS: 1
530 PG_REGRESS_SOCK_DIR: "c:/cirrus/"
532 IMAGE_FAMILY: pg-ci-windows-ci
537 powershell -Command get-psdrive -psprovider filesystem
542 name: Windows - Server 2019, VS 2019 - Meson & ninja
543 << : *WINDOWS_ENVIRONMENT_BASE
546 TEST_JOBS: 8 # wild guess, data based value welcome
548 # Cirrus defaults to SetErrorMode(SEM_NOGPFAULTERRORBOX | ...). That
549 # prevents crash reporting from working unless binaries do SetErrorMode()
550 # themselves. Furthermore, it appears that either python or, more likely,
551 # the C runtime has a bug where SEM_NOGPFAULTERRORBOX can very
552 # occasionally *trigger* a crash on process exit - which is hard to debug,
553 # given that it explicitly prevents crash dumps from working...
554 # 0x8001 is SEM_FAILCRITICALERRORS | SEM_NOOPENFILEERRORBOX
555 CIRRUS_WINDOWS_ERROR_MODE: 0x8001
557 <<: *windows_task_template
559 depends_on: SanityCheck
560 only_if: $CIRRUS_CHANGE_MESSAGE !=~ '.*\nci-os-only:.*' || $CIRRUS_CHANGE_MESSAGE =~ '.*\nci-os-only:[^\n]*windows.*'
562 setup_additional_packages_script: |
563 REM choco install -y --no-progress ...
565 setup_hosts_file_script: |
566 echo 127.0.0.1 pg-loadbalancetest >> c:\Windows\System32\Drivers\etc\hosts
567 echo 127.0.0.2 pg-loadbalancetest >> c:\Windows\System32\Drivers\etc\hosts
568 echo 127.0.0.3 pg-loadbalancetest >> c:\Windows\System32\Drivers\etc\hosts
569 type c:\Windows\System32\Drivers\etc\hosts
571 # Use /DEBUG:FASTLINK to avoid high memory usage during linking
574 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% -DPG_TEST_EXTRA="%PG_TEST_EXTRA%" build
580 check_world_script: |
582 meson test %MTEST_ARGS% --num-processes %TEST_JOBS%
585 <<: *on_failure_meson
587 path: "crashlog-*.txt"
592 << : *WINDOWS_ENVIRONMENT_BASE
593 name: Windows - Server 2019, MinGW64 - Meson
595 # due to resource constraints we don't run this task by default for now
597 # worth using only_if despite being manual, otherwise this task will show up
598 # when e.g. ci-os-only: linux is used.
599 only_if: $CIRRUS_CHANGE_MESSAGE !=~ '.*\nci-os-only:.*' || $CIRRUS_CHANGE_MESSAGE =~ '.*\nci-os-only:[^\n]*mingw.*'
600 # otherwise it'll be sorted before other tasks
601 depends_on: SanityCheck
604 TEST_JOBS: 4 # higher concurrency causes occasional failures
605 CCACHE_DIR: C:/msys64/ccache
606 CCACHE_MAXSIZE: "500M"
607 CCACHE_SLOPPINESS: pch_defines,time_macros
609 # for some reason mingw plpython cannot find its installation without this
610 PYTHONHOME: C:/msys64/ucrt64
611 # prevents MSYS bash from resetting error mode
613 # Start bash in current working directory
615 BASH: C:\msys64\usr\bin\bash.exe -l
617 <<: *windows_task_template
620 folder: ${CCACHE_DIR}
622 setup_additional_packages_script: |
623 REM C:\msys64\usr\bin\pacman.exe -S --noconfirm ...
626 %BASH% -c "where gcc"
627 %BASH% -c "gcc --version"
628 %BASH% -c "where perl"
629 %BASH% -c "perl --version"
631 # disable -Dnls as the number of files it creates cause a noticable slowdown
633 %BASH% -c "meson setup -Ddebug=true -Doptimization=g -Dcassert=true -Dinjection_points=true -Db_pch=true -Dnls=disabled -DTAR=%TAR% build"
636 %BASH% -c "ninja -C build"
638 upload_caches: ccache
641 %BASH% -c "meson test %MTEST_ARGS% --num-processes %TEST_JOBS%"
644 <<: *on_failure_meson
646 path: "crashlog-*.txt"
651 name: CompilerWarnings
653 # To limit unnecessary work only run this once the SanityCheck
654 # succeeds. This is particularly important for this task as we intentionally
655 # use always: to continue after failures. Task that did not run count as a
656 # success, so we need to recheck SanityChecks's condition here ...
657 depends_on: SanityCheck
658 only_if: $CIRRUS_CHANGE_MESSAGE !=~ '.*\nci-os-only:.*'
663 IMAGE_FAMILY: pg-ci-bookworm
665 # Use larger ccache cache, as this task compiles with multiple compilers /
668 CCACHE_DIR: "/tmp/ccache_dir"
670 LINUX_CONFIGURE_FEATURES: *LINUX_CONFIGURE_FEATURES
671 LINUX_MESON_FEATURES: *LINUX_MESON_FEATURES
673 # GCC emits a warning for llvm-14, so switch to a newer one.
674 LLVM_CONFIG: llvm-config-16
676 <<: *linux_task_template
682 ulimit -a -H && ulimit -a -S
690 setup_additional_packages_script: |
692 #DEBIAN_FRONTEND=noninteractive apt-get -y install ...
695 # Test that code can be built with gcc/clang without warnings
698 setup_script: echo "COPT=-Werror" > src/Makefile.custom
700 # Trace probes have a history of getting accidentally broken. Use the
701 # different compilers to build with different combinations of dtrace on/off
702 # and cassert on/off.
704 # gcc, cassert off, dtrace on
706 gcc_warning_script: |
710 ${LINUX_CONFIGURE_FEATURES} \
711 CC="ccache gcc" CXX="ccache g++" CLANG="ccache clang-16"
712 make -s -j${BUILD_JOBS} clean
713 time make -s -j${BUILD_JOBS} world-bin
715 # gcc, cassert on, dtrace off
717 gcc_a_warning_script: |
721 ${LINUX_CONFIGURE_FEATURES} \
722 CC="ccache gcc" CXX="ccache g++" CLANG="ccache clang-16"
723 make -s -j${BUILD_JOBS} clean
724 time make -s -j${BUILD_JOBS} world-bin
726 # clang, cassert off, dtrace off
728 clang_warning_script: |
730 --cache clang.cache \
731 ${LINUX_CONFIGURE_FEATURES} \
732 CC="ccache clang" CXX="ccache clang++-16" CLANG="ccache clang-16"
733 make -s -j${BUILD_JOBS} clean
734 time make -s -j${BUILD_JOBS} world-bin
736 # clang, cassert on, dtrace on
738 clang_a_warning_script: |
740 --cache clang.cache \
743 ${LINUX_CONFIGURE_FEATURES} \
744 CC="ccache clang" CXX="ccache clang++-16" CLANG="ccache clang-16"
745 make -s -j${BUILD_JOBS} clean
746 time make -s -j${BUILD_JOBS} world-bin
748 # cross-compile to windows
750 mingw_cross_warning_script: |
752 --host=x86_64-w64-mingw32 \
755 CC="ccache x86_64-w64-mingw32-gcc" \
756 CXX="ccache x86_64-w64-mingw32-g++"
757 make -s -j${BUILD_JOBS} clean
758 time make -s -j${BUILD_JOBS} world-bin
761 # Verify docs can be built
763 # XXX: Only do this if there have been changes in doc/ since last build
768 CC="ccache gcc" CXX="ccache g++" CLANG="ccache clang-16"
769 make -s -j${BUILD_JOBS} clean
770 time make -s -j${BUILD_JOBS} -C doc
773 # Verify headerscheck / cpluspluscheck succeed
775 # - Don't use ccache, the files are uncacheable, polluting ccache's
777 # - Use -fmax-errors, as particularly cpluspluscheck can be very verbose
778 # - XXX have to disable ICU to avoid errors:
779 # https://postgr.es/m/20220323002024.f2g6tivduzrktgfa%40alap3.anarazel.de
782 headers_headerscheck_script: |
784 ${LINUX_CONFIGURE_FEATURES} \
787 CC="gcc" CXX"=g++" CLANG="clang-16"
788 make -s -j${BUILD_JOBS} clean
789 time make -s headerscheck EXTRAFLAGS='-fmax-errors=10'
790 headers_cpluspluscheck_script: |
791 time make -s cpluspluscheck EXTRAFLAGS='-fmax-errors=10'
794 upload_caches: ccache