Skip to content

Commit db063cb

Browse files
committed
CI: update freebsd 13 image.
13.2 is going to be EOL. close GH-13622
1 parent 059bf33 commit db063cb

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.cirrus.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ env:
44
freebsd_task:
55
name: FREEBSD_DEBUG_NTS
66
freebsd_instance:
7-
image_family: freebsd-13-2
7+
image_family: freebsd-13-3
88
env:
99
ARCH: amd64
1010
install_script:
@@ -14,7 +14,7 @@ freebsd_task:
1414
- 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
1515
script:
1616
- ./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-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
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-kerberos --with-ffi --enable-zend-test --enable-dl-test=shared --enable-intl --with-mhash --with-sodium --with-config-file-path=/etc --with-config-file-scan-dir=/etc/php.d
1818
- gmake -j2
1919
- mkdir /etc/php.d
2020
- gmake install

ext/curl/tests/curl_setopt_ssl.phpt

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ exec('openssl version', $out, $code);
99
if ($code > 0) die("skip couldn't locate openssl binary");
1010
if (PHP_OS_FAMILY === 'Windows') die('skip not for Windows');
1111
if (PHP_OS_FAMILY === 'Darwin') die('skip Fails intermittently on macOS');
12+
if (PHP_OS === 'FreeBSD') die('skip proc_open seems to be stuck on FreeBSD');
1213
$curl_version = curl_version();
1314
if ($curl_version['version_number'] < 0x074700) {
1415
die("skip: blob options not supported for curl < 7.71.0");
@@ -237,4 +238,4 @@ bool(true)
237238
bool(true)
238239
bool(true)
239240
client cert subject not in response
240-
CURL ERROR: 83
241+
CURL ERROR: 83

0 commit comments

Comments
 (0)