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 # Source of images / containers
9 GCP_PROJECT: pg-ci-images
10 IMAGE_PROJECT: $GCP_PROJECT
11 CONTAINER_REPO: us-docker.pkg.dev/${GCP_PROJECT}/ci
13 # The lower depth accelerates git clone. Use a bit of depth so that
14 # concurrent tasks and retrying older jobs have a chance of working.
15 CIRRUS_CLONE_DEPTH: 500
16 # Useful to be able to analyse what in a script takes long
17 CIRRUS_LOG_TIMESTAMP: true
19 CCACHE_MAXSIZE: "250M"
21 # target to test, for all but windows
22 CHECK: check-world PROVE_FLAGS=$PROVE_FLAGS
25 MTEST_ARGS: --print-errorlogs --no-rebuild -C build
26 PGCTLTIMEOUT: 120 # avoids spurious failures during parallel tests
27 TEMP_CONFIG: ${CIRRUS_WORKING_DIR}/src/tools/ci/pg_ci_base.conf
28 PG_TEST_EXTRA: kerberos ldap ssl
31 # What files to preserve in case tests fail
32 on_failure_ac: &on_failure_ac
40 on_failure_meson: &on_failure_meson
43 - "build*/testrun/**/*.log"
44 - "build*/testrun/**/*.diffs"
45 - "build*/testrun/**/regress_log_*"
48 # In theory it'd be nice to upload the junit files meson generates, so that
49 # cirrus will nicely annotate the commit. Unfortunately the files don't
50 # contain identifiable file + line numbers right now, so the annotations
51 # don't end up useful. We could probably improve on that with a some custom
52 # conversion script, but ...
54 path: "build*/meson-logs/*.txt"
58 # To avoid unnecessarily spinning up a lot of VMs / containers for entirely
59 # broken commits, have a minimal task that all others depend on.
63 # If a specific OS is requested, don't run the sanity check. This shortens
64 # push-wait-for-ci cycle time a bit when debugging operating system specific
65 # failures. Uses skip instead of only_if, as cirrus otherwise warns about
66 # only_if conditions not matching.
67 skip: $CIRRUS_CHANGE_MESSAGE =~ '.*\nci-os-only:.*'
73 CCACHE_DIR: ${CIRRUS_WORKING_DIR}/ccache_dir
74 # no options enabled, should be small
75 CCACHE_MAXSIZE: "150M"
77 # Container starts up quickly, but is slower at runtime, particularly for
78 # tests. Good for the briefly running sanity check.
80 image: $CONTAINER_REPO/linux_debian_bullseye_ci:latest
88 chown -R postgres:postgres .
89 mkdir -p ${CCACHE_DIR}
90 chown -R postgres:postgres ${CCACHE_DIR}
91 echo '* - memlock 134217728' > /etc/security/limits.d/postgres.conf
92 su postgres -c "ulimit -l -H && ulimit -l -S"
93 # Can't change container's kernel.core_pattern. Postgres user can't write
94 # to / normally. Change that.
102 --auto-features=disabled \
103 -Dtap_tests=enabled \
108 ninja -C build -j${BUILD_JOBS}
110 upload_caches: ccache
112 # Run a minimal set of tests. The main regression tests take too long for
113 # this purpose. For now this is a random quick pg_regress style test, and a
114 # tap test that exercises both a frontend binary and the backend.
115 test_minimal_script: |
118 meson test $MTEST_ARGS --num-processes ${TEST_JOBS} \
119 tmp_install cube/regress pg_ctl/001_start_stop
123 <<: *on_failure_meson
125 mkdir -m 770 /tmp/cores
126 find / -maxdepth 1 -type f -name 'core*' -exec mv '{}' /tmp/cores/ \;
127 src/tools/ci/cores_backtrace.sh linux /tmp/cores
131 name: FreeBSD - 13 - Meson
134 # FreeBSD on GCP is slow when running with larger number of CPUS /
135 # jobs. Using one more job than cpus seems to work best.
140 CCACHE_DIR: /tmp/ccache_dir
141 CPPFLAGS: -DRELCACHE_FORCE_RELEASE -DCOPY_PARSE_PLAN_TREES -DWRITE_READ_PARSE_PLAN_TREES -DRAW_EXPRESSION_COVERAGE_TEST
144 depends_on: SanityCheck
145 only_if: $CIRRUS_CHANGE_MESSAGE !=~ '.*\nci-os-only:.*' || $CIRRUS_CHANGE_MESSAGE =~ '.*\nci-os-only:[^\n]*freebsd.*'
147 compute_engine_instance:
148 image_project: $IMAGE_PROJECT
149 image: family/pg-ci-freebsd-13
158 ulimit -a -H && ulimit -a -S
163 # Work around performance issues due to 32KB block size
164 repartition_script: src/tools/ci/gcp_freebsd_repartition.sh
165 create_user_script: |
167 chown -R postgres:postgres .
168 mkdir -p ${CCACHE_DIR}
169 chown -R postgres:postgres ${CCACHE_DIR}
170 setup_core_files_script: |
171 mkdir -m 770 /tmp/cores
172 chown root:postgres /tmp/cores
173 sysctl kern.corefile='/tmp/cores/%N.%P.core'
174 setup_additional_packages_script: |
177 # NB: Intentionally build without -Dllvm. The freebsd image size is already
178 # large enough to make VM startup slow, and even without llvm freebsd
179 # already takes longer than other platforms except for windows.
184 -Dcassert=true -Duuid=bsd -Dtcl_version=tcl86 -Ddtrace=auto \
185 -DPG_TEST_EXTRA="$PG_TEST_EXTRA" \
186 -Dextra_lib_dirs=/usr/local/lib -Dextra_include_dirs=/usr/local/include/ \
189 build_script: su postgres -c 'ninja -C build -j${BUILD_JOBS}'
190 upload_caches: ccache
195 meson test $MTEST_ARGS --num-processes ${TEST_JOBS}
198 # test runningcheck, freebsd chosen because it's currently fast enough
199 test_running_script: |
203 meson test $MTEST_ARGS --quiet --suite setup
204 export LD_LIBRARY_PATH="$(pwd)/build/tmp_install/usr/local/pgsql/lib/:$LD_LIBRARY_PATH"
205 mkdir -p build/testrun
206 build/tmp_install/usr/local/pgsql/bin/initdb -N build/runningcheck --no-instructions -A trust
207 echo "include '$(pwd)/src/tools/ci/pg_ci_base.conf'" >> build/runningcheck/postgresql.conf
208 build/tmp_install/usr/local/pgsql/bin/pg_ctl -c -o '-c fsync=off' -D build/runningcheck -l build/testrun/runningcheck.log start
209 meson test $MTEST_ARGS --num-processes ${TEST_JOBS} --setup running
210 build/tmp_install/usr/local/pgsql/bin/pg_ctl -D build/runningcheck stop
214 # if the server continues running, it often causes cirrus-ci to fail
215 # during upload, as it doesn't expect artifacts to change size
216 stop_running_script: |
218 build/tmp_install/usr/local/pgsql/bin/pg_ctl -D build/runningcheck stop || true
220 <<: *on_failure_meson
221 cores_script: src/tools/ci/cores_backtrace.sh freebsd /tmp/cores
224 # configure feature flags, shared between the task running the linux tests and
225 # the CompilerWarnings task
226 LINUX_CONFIGURE_FEATURES: &LINUX_CONFIGURE_FEATURES >-
240 --with-tcl --with-tclconfig=/usr/lib/tcl8.6/
244 LINUX_MESON_FEATURES: &LINUX_MESON_FEATURES >-
253 TEST_JOBS: 8 # experimentally derived to be a decent choice
255 CCACHE_DIR: /tmp/ccache_dir
256 DEBUGINFOD_URLS: "https://debuginfod.debian.net"
258 # Enable a reasonable set of sanitizers. Use the linux task for that, as
259 # it's one of the fastest tasks (without sanitizers). Also several of the
260 # sanitizers work best on linux.
262 # The overhead of alignment sanitizer is low, undefined behaviour has
263 # moderate overhead. Test alignment sanitizer in the meson task, as it
264 # does both 32 and 64 bit builds and is thus more likely to expose
267 # Address sanitizer in contrast is somewhat expensive. Enable it in the
268 # autoconf task, as the meson task tests both 32 and 64bit.
270 # disable_coredump=0, abort_on_error=1: for useful backtraces in case of crashes
271 # print_stacktraces=1,verbosity=2, duh
272 # detect_leaks=0: too many uninteresting leak errors in short-lived binaries
273 UBSAN_OPTIONS: print_stacktrace=1:disable_coredump=0:abort_on_error=1:verbosity=2
274 ASAN_OPTIONS: print_stacktrace=1:disable_coredump=0:abort_on_error=1:detect_leaks=0
276 # SANITIZER_FLAGS is set in the tasks below
277 CFLAGS: -Og -ggdb -fno-sanitize-recover=all $SANITIZER_FLAGS
279 LDFLAGS: $SANITIZER_FLAGS
283 LINUX_CONFIGURE_FEATURES: *LINUX_CONFIGURE_FEATURES
284 LINUX_MESON_FEATURES: *LINUX_MESON_FEATURES
286 depends_on: SanityCheck
287 only_if: $CIRRUS_CHANGE_MESSAGE !=~ '.*\nci-os-only:.*' || $CIRRUS_CHANGE_MESSAGE =~ '.*\nci-os-only:[^\n]*linux.*'
289 compute_engine_instance:
290 image_project: $IMAGE_PROJECT
291 image: family/pg-ci-bullseye
297 folder: ${CCACHE_DIR}
303 ulimit -a -H && ulimit -a -S
305 create_user_script: |
307 chown -R postgres:postgres .
308 mkdir -p ${CCACHE_DIR}
309 chown -R postgres:postgres ${CCACHE_DIR}
310 echo '* - memlock 134217728' > /etc/security/limits.d/postgres.conf
311 su postgres -c "ulimit -l -H && ulimit -l -S"
312 setup_core_files_script: |
313 mkdir -m 770 /tmp/cores
314 chown root:postgres /tmp/cores
315 sysctl kernel.core_pattern='/tmp/cores/%e-%s-%p.core'
316 setup_additional_packages_script: |
318 #DEBIAN_FRONTEND=noninteractive apt-get -y install ...
321 - name: Linux - Debian Bullseye - Autoconf
324 SANITIZER_FLAGS: -fsanitize=address
329 --enable-cassert --enable-debug --enable-tap-tests \
331 --with-segsize-blocks=8 \
333 ${LINUX_CONFIGURE_FEATURES} \
337 build_script: su postgres -c "make -s -j${BUILD_JOBS} world-bin"
338 upload_caches: ccache
342 ulimit -c unlimited # default is 0
343 make -s ${CHECK} ${CHECKFLAGS} -j${TEST_JOBS}
349 - name: Linux - Debian Bullseye - Meson
352 CCACHE_MAXSIZE: "400M" # tests two different builds
353 SANITIZER_FLAGS: -fsanitize=alignment,undefined
360 ${LINUX_MESON_FEATURES} \
361 -DPG_TEST_EXTRA="$PG_TEST_EXTRA" \
365 # Also build & test in a 32bit build - it's gotten rare to test that
367 configure_32_script: |
369 export CC='ccache gcc -m32'
373 ${LINUX_MESON_FEATURES} \
375 --pkg-config-path /usr/lib/i386-linux-gnu/pkgconfig/ \
376 -DPERL=perl5.32-i386-linux-gnu \
377 -DPG_TEST_EXTRA="$PG_TEST_EXTRA" \
381 build_script: su postgres -c 'ninja -C build -j${BUILD_JOBS}'
382 build_32_script: su postgres -c 'ninja -C build-32 -j${BUILD_JOBS}'
384 upload_caches: ccache
389 meson test $MTEST_ARGS --num-processes ${TEST_JOBS}
391 # so that we don't upload 64bit logs if 32bit fails
394 # There's currently no coverage of icu with LANG=C in the buildfarm. We
395 # can easily provide some here by running one of the sets of tests that
396 # way. Newer versions of python insist on changing the LC_CTYPE away
397 # from C, prevent that with PYTHONCOERCECLOCALE.
398 test_world_32_script: |
401 PYTHONCOERCECLOCALE=0 LANG=C meson test $MTEST_ARGS -C build-32 --num-processes ${TEST_JOBS}
405 <<: *on_failure_meson
408 cores_script: src/tools/ci/cores_backtrace.sh linux /tmp/cores
412 name: macOS - Ventura - Meson
415 CPUS: 4 # always get that much for cirrusci macOS instances
417 # Test performance regresses noticably when using all cores. 8 seems to
419 # https://postgr.es/m/20220927040208.l3shfcidovpzqxfh%40awork3.anarazel.de
422 CIRRUS_WORKING_DIR: ${HOME}/pgsql/
423 CCACHE_DIR: ${HOME}/ccache
424 HOMEBREW_CACHE: ${HOME}/homebrew-cache
425 PERL5LIB: ${HOME}/perl5/lib/perl5
429 CPPFLAGS: -DRANDOMIZE_ALLOCATED_MEMORY
433 depends_on: SanityCheck
434 only_if: $CIRRUS_CHANGE_MESSAGE !=~ '.*\nci-os-only:.*' || $CIRRUS_CHANGE_MESSAGE =~ '.*\nci-os-only:[^\n]*(macos|darwin|osx).*'
437 image: ghcr.io/cirruslabs/macos-ventura-base:latest
442 ulimit -a -H && ulimit -a -S
445 setup_core_files_script:
446 - mkdir ${HOME}/cores
447 - sudo sysctl kern.corefile="${HOME}/cores/core.%P"
452 - perl -mIPC::Run -e 1 || cpan -T IPC::Run
453 - perl -mIO::Pty -e 1 || cpan -T IO::Pty
457 # XXX: Could we instead install homebrew into a cached directory? The
458 # homebrew installation takes a good bit of time every time, even if the
459 # packages do not need to be downloaded.
461 folder: $HOMEBREW_CACHE
462 setup_additional_packages_script: |
477 brew cleanup -s # to reduce cache size
478 upload_caches: homebrew
483 brewpath="/opt/homebrew"
484 PKG_CONFIG_PATH="${brewpath}/lib/pkgconfig:${PKG_CONFIG_PATH}"
486 for pkg in icu4c krb5 openldap openssl zstd ; do
487 pkgpath="${brewpath}/opt/${pkg}"
488 PKG_CONFIG_PATH="${pkgpath}/lib/pkgconfig:${PKG_CONFIG_PATH}"
489 PATH="${pkgpath}/bin:${pkgpath}/sbin:$PATH"
492 export PKG_CONFIG_PATH PATH
496 -Dextra_include_dirs=${brewpath}/include \
497 -Dextra_lib_dirs=${brewpath}/lib \
499 -Duuid=e2fs -Ddtrace=auto \
501 -DPG_TEST_EXTRA="$PG_TEST_EXTRA" \
504 build_script: ninja -C build -j${BUILD_JOBS}
505 upload_caches: ccache
508 ulimit -c unlimited # default is 0
509 ulimit -n 1024 # default is 256, pretty low
510 meson test $MTEST_ARGS --num-processes ${TEST_JOBS}
513 <<: *on_failure_meson
514 cores_script: src/tools/ci/cores_backtrace.sh macos "${HOME}/cores"
517 WINDOWS_ENVIRONMENT_BASE: &WINDOWS_ENVIRONMENT_BASE
519 # Half the allowed per-user CPU cores
522 # The default cirrus working dir is in a directory msbuild complains about
523 CIRRUS_WORKING_DIR: "c:/cirrus"
524 # git's tar doesn't deal with drive letters, see
525 # https://postgr.es/m/b6782dc3-a7b0-ed56-175f-f8f54cb08d67%40dunslane.net
526 TAR: "c:/windows/system32/tar.exe"
527 # Avoids port conflicts between concurrent tap test runs
528 PG_TEST_USE_UNIX_SOCKETS: 1
529 PG_REGRESS_SOCK_DIR: "c:/cirrus/"
534 powershell -Command get-psdrive -psprovider filesystem
539 name: Windows - Server 2019, VS 2019 - Meson & ninja
540 << : *WINDOWS_ENVIRONMENT_BASE
543 TEST_JOBS: 8 # wild guess, data based value welcome
545 # Cirrus defaults to SetErrorMode(SEM_NOGPFAULTERRORBOX | ...). That
546 # prevents crash reporting from working unless binaries do SetErrorMode()
547 # themselves. Furthermore, it appears that either python or, more likely,
548 # the C runtime has a bug where SEM_NOGPFAULTERRORBOX can very
549 # occasionally *trigger* a crash on process exit - which is hard to debug,
550 # given that it explicitly prevents crash dumps from working...
551 # 0x8001 is SEM_FAILCRITICALERRORS | SEM_NOOPENFILEERRORBOX
552 CIRRUS_WINDOWS_ERROR_MODE: 0x8001
554 depends_on: SanityCheck
555 only_if: $CIRRUS_CHANGE_MESSAGE !=~ '.*\nci-os-only:.*' || $CIRRUS_CHANGE_MESSAGE =~ '.*\nci-os-only:[^\n]*windows.*'
557 compute_engine_instance:
558 image_project: $IMAGE_PROJECT
559 image: family/pg-ci-windows-ci-vs-2019
564 setup_additional_packages_script: |
565 REM choco install -y --no-progress ...
567 # Use /DEBUG:FASTLINK to avoid high memory usage during linking
570 meson setup --backend ninja --buildtype debug -Dc_link_args=/DEBUG:FASTLINK -Dcassert=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
576 check_world_script: |
578 meson test %MTEST_ARGS% --num-processes %TEST_JOBS%
581 <<: *on_failure_meson
583 path: "crashlog-*.txt"
588 << : *WINDOWS_ENVIRONMENT_BASE
589 name: Windows - Server 2019, MinGW64 - Meson
591 # due to resource constraints we don't run this task by default for now
593 # worth using only_if despite being manual, otherwise this task will show up
594 # when e.g. ci-os-only: linux is used.
595 only_if: $CIRRUS_CHANGE_MESSAGE !=~ '.*\nci-os-only:.*' || $CIRRUS_CHANGE_MESSAGE =~ '.*\nci-os-only:[^\n]*mingw.*'
596 # otherwise it'll be sorted before other tasks
597 depends_on: SanityCheck
599 compute_engine_instance:
600 image_project: $IMAGE_PROJECT
601 image: family/pg-ci-windows-ci-mingw64
607 TEST_JOBS: 4 # higher concurrency causes occasional failures
608 CCACHE_DIR: C:/msys64/ccache
609 CCACHE_MAXSIZE: "500M"
610 CCACHE_SLOPPINESS: pch_defines,time_macros
612 # for some reason mingw plpython cannot find its installation without this
613 PYTHONHOME: C:/msys64/ucrt64
614 # prevents MSYS bash from resetting error mode
616 # Start bash in current working directory
618 BASH: C:\msys64\usr\bin\bash.exe -l
621 folder: ${CCACHE_DIR}
623 setup_additional_packages_script: |
624 REM C:\msys64\usr\bin\pacman.exe -S --noconfirm ...
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
634 %BASH% -c "meson setup -Ddebug=true -Doptimization=g -Dcassert=true -Db_pch=true -Dnls=disabled -DTAR=%TAR% build"
637 %BASH% -c "ninja -C build"
639 upload_caches: ccache
642 %BASH% -c "meson test %MTEST_ARGS% --num-processes %TEST_JOBS%"
645 <<: *on_failure_meson
647 path: "crashlog-*.txt"
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:.*'
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
674 image: $CONTAINER_REPO/linux_debian_bullseye_ci:latest
681 ulimit -a -H && ulimit -a -S
689 setup_additional_packages_script: |
691 #DEBIAN_FRONTEND=noninteractive apt-get -y install ...
694 # Test that code can be built with gcc/clang without warnings
697 setup_script: echo "COPT=-Werror" > src/Makefile.custom
699 # Trace probes have a history of getting accidentally broken. Use the
700 # different compilers to build with different combinations of dtrace on/off
701 # and cassert on/off.
703 # gcc, cassert off, dtrace on
705 gcc_warning_script: |
709 ${LINUX_CONFIGURE_FEATURES} \
710 CC="ccache gcc" CXX="ccache g++" CLANG="ccache clang"
711 make -s -j${BUILD_JOBS} clean
712 time make -s -j${BUILD_JOBS} world-bin
714 # gcc, cassert on, dtrace off
716 gcc_a_warning_script: |
720 ${LINUX_CONFIGURE_FEATURES} \
721 CC="ccache gcc" CXX="ccache g++" CLANG="ccache clang"
722 make -s -j${BUILD_JOBS} clean
723 time make -s -j${BUILD_JOBS} world-bin
725 # clang, cassert off, dtrace off
727 clang_warning_script: |
729 --cache clang.cache \
730 ${LINUX_CONFIGURE_FEATURES} \
731 CC="ccache clang" CXX="ccache clang++" CLANG="ccache clang"
732 make -s -j${BUILD_JOBS} clean
733 time make -s -j${BUILD_JOBS} world-bin
735 # clang, cassert on, dtrace on
737 clang_a_warning_script: |
739 --cache clang.cache \
742 ${LINUX_CONFIGURE_FEATURES} \
743 CC="ccache clang" CXX="ccache clang++" CLANG="ccache clang"
744 make -s -j${BUILD_JOBS} clean
745 time make -s -j${BUILD_JOBS} world-bin
747 # cross-compile to windows
749 mingw_cross_warning_script: |
751 --host=x86_64-w64-mingw32 \
753 CC="ccache x86_64-w64-mingw32-gcc" \
754 CXX="ccache x86_64-w64-mingw32-g++"
755 make -s -j${BUILD_JOBS} clean
756 time make -s -j${BUILD_JOBS} world-bin
759 # Verify docs can be built
761 # XXX: Only do this if there have been changes in doc/ since last build
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"
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