.cirrus.yml 1.6 KB

12345678910111213141516171819202122232425262728
  1. env:
  2. CIRRUS_CLONE_DEPTH: 1
  3. ARCH: amd64
  4. freebsd_instance:
  5. image_family: freebsd-13-0
  6. task:
  7. name: FREEBSD_DEBUG_NTS
  8. install_script:
  9. #- sed -i -e 's/quarterly/latest/g' /etc/pkg/FreeBSD.conf
  10. #- pkg upgrade -y
  11. - kldload accf_http
  12. - pkg install -y autoconf bison gmake re2c icu libiconv png freetype2 enchant2 bzip2 krb5 t1lib gmp tidyp libsodium libzip libxml2 libxslt openssl oniguruma pkgconf webp libavif
  13. script:
  14. - ./buildconf -f
  15. - ./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-kerberos --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
  16. - gmake -j2
  17. - mkdir /etc/php.d
  18. - gmake install
  19. - echo opcache.enable_cli=1 > /etc/php.d/opcache.ini
  20. - echo opcache.protect_memory=1 >> /etc/php.d/opcache.ini
  21. # Specify opcache.preload_user as we're running as root.
  22. - echo opcache.preload_user=root >> /etc/php.d/opcache.ini
  23. tests_script:
  24. - export SKIP_IO_CAPTURE_TESTS=1
  25. - export CI_NO_IPV6=1
  26. - sapi/cli/php run-tests.php -P -q -j2 -g FAIL,XFAIL,BORK,WARN,LEAK,XLEAK,SKIP --offline --show-diff --show-slow 1000 --set-timeout 120 -d zend_extension=opcache.so