xref: /php-src/.cirrus.yml (revision a4534faf)
1env:
2  CIRRUS_CLONE_DEPTH: 1
3
4freebsd_task:
5  name: FREEBSD_DEBUG_NTS
6  freebsd_instance:
7    image_family: freebsd-13-3
8  env:
9    ARCH: amd64
10  install_script:
11    #- sed -i -e 's/quarterly/latest/g' /etc/pkg/FreeBSD.conf
12    #- pkg upgrade -y
13    - kldload accf_http
14    - pkg install -y autoconf bison gmake re2c icu libiconv png freetype2 enchant2 bzip2 t1lib gmp tidyp libsodium libzip libxml2 libxslt openssl oniguruma pkgconf webp libavif
15  script:
16    - ./buildconf -f
17    - ./configure --prefix=/usr/local --enable-debug --enable-option-checking=fatal --enable-fpm --with-pdo-sqlite --without-pear --with-bz2 --with-avif --with-jpeg --with-webp --with-freetype --enable-gd --enable-exif --with-zip --with-zlib --enable-soap --enable-xmlreader --with-xsl --with-libxml --enable-shmop --enable-pcntl --enable-mbstring --with-curl --enable-sockets --with-openssl --with-iconv=/usr/local --enable-bcmath --enable-calendar --enable-ftp --with-ffi --enable-zend-test --enable-dl-test=shared --enable-intl --with-mhash --with-sodium --enable-werror --with-config-file-path=/etc --with-config-file-scan-dir=/etc/php.d
18    - gmake -j2
19    - mkdir /etc/php.d
20    - gmake install
21    - echo opcache.enable_cli=1 > /etc/php.d/opcache.ini
22    - echo opcache.protect_memory=1 >> /etc/php.d/opcache.ini
23    # Specify opcache.preload_user as we're running as root.
24    - echo opcache.preload_user=root >> /etc/php.d/opcache.ini
25  tests_script:
26    - export SKIP_IO_CAPTURE_TESTS=1
27    - export CI_NO_IPV6=1
28    - export STACK_LIMIT_DEFAULTS_CHECK=1
29    - sapi/cli/php run-tests.php -P -q -j2 -g FAIL,BORK,LEAK,XLEAK --no-progress --offline --show-diff --show-slow 1000 --set-timeout 120 -d zend_extension=opcache.so
30