FreeBSD-main-amd64-gcc12_build - Build #4021 - Still Failing

From: <jenkins-admin_at_FreeBSD.org>
Date: Mon, 07 Oct 2024 16:11:20 UTC
FreeBSD-main-amd64-gcc12_build - Build #4021 (782766a32d963587a6aac8521aedd132b68a9dab) - Still Failing

Build information: https://ci.FreeBSD.org/job/FreeBSD-main-amd64-gcc12_build/4021/
Full change log: https://ci.FreeBSD.org/job/FreeBSD-main-amd64-gcc12_build/4021/changes
Full build log: https://ci.FreeBSD.org/job/FreeBSD-main-amd64-gcc12_build/4021/console

Status explanation:
"Failure" - the build is suspected being broken by the following changes
"Still Failing" - the build has not been fixed by the following changes and
                  this is a notification to note that these changes have
                  not been fully tested by the CI system

Change summaries:
(Those commits are likely but not certainly responsible)

782766a32d963587a6aac8521aedd132b68a9dab by bapt:
genl: small cleanup



The end of the build log:

[...truncated 88.68 MiB...]
      |         ^~~~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/openssl/ec.h:1022:27: note: declared here
 1022 | OSSL_DEPRECATEDIN_3_0 int EC_KEY_up_ref(EC_KEY *key);
      |                           ^~~~~~~~~~~~~
/workspace/src/crypto/openssh/ssh-pkcs11-client.c: In function 'wrap_key':
/workspace/src/crypto/openssh/ssh-pkcs11-client.c:413:17: warning: 'RSA_set_method' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  413 |                 RSA_set_method(k->rsa, helper->rsa_meth);
      |                 ^~~~~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/openssl/rsa.h:302:27: note: declared here
  302 | OSSL_DEPRECATEDIN_3_0 int RSA_set_method(RSA *rsa, const RSA_METHOD *meth);
      |                           ^~~~~~~~~~~~~~
/workspace/src/crypto/openssh/ssh-pkcs11-client.c:418:17: warning: 'EC_KEY_set_method' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  418 |                 EC_KEY_set_method(k->ecdsa, helper->ec_meth);
      |                 ^~~~~~~~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/openssl/ec.h:1283:27: note: declared here
 1283 | OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_method(EC_KEY *key, const EC_KEY_METHOD *meth);
      |                           ^~~~~~~~~~~~~~~~~
/workspace/src/crypto/openssh/ssh-pkcs11-client.c: In function 'pkcs11_make_cert':
/workspace/src/crypto/openssh/ssh-pkcs11-client.c:457:17: warning: 'RSA_set_method' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  457 |                 RSA_set_method(ret->rsa, helper->rsa_meth);
      |                 ^~~~~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/openssl/rsa.h:302:27: note: declared here
  302 | OSSL_DEPRECATEDIN_3_0 int RSA_set_method(RSA *rsa, const RSA_METHOD *meth);
      |                           ^~~~~~~~~~~~~~
/workspace/src/crypto/openssh/ssh-pkcs11-client.c:467:17: warning: 'EC_KEY_set_method' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  467 |                 EC_KEY_set_method(ret->ecdsa, helper->ec_meth);
      |                 ^~~~~~~~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/openssl/ec.h:1283:27: note: declared here
 1283 | OSSL_DEPRECATEDIN_3_0 int EC_KEY_set_method(EC_KEY *key, const EC_KEY_METHOD *meth);
      |                           ^~~~~~~~~~~~~~~~~
/workspace/src/crypto/openssh/ssh-pkcs11-client.c: In function 'pkcs11_start_helper_methods':
/workspace/src/crypto/openssh/ssh-pkcs11-client.c:499:9: warning: 'EC_KEY_METHOD_new' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  499 |         if ((ec_meth = EC_KEY_METHOD_new(EC_KEY_OpenSSL())) == NULL)
      |         ^~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/openssl/ec.h:1461:38: note: declared here
 1461 | OSSL_DEPRECATEDIN_3_0 EC_KEY_METHOD *EC_KEY_METHOD_new(const EC_KEY_METHOD *meth);
      |                                      ^~~~~~~~~~~~~~~~~
/workspace/src/crypto/openssh/ssh-pkcs11-client.c:499:9: warning: 'EC_KEY_OpenSSL' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  499 |         if ((ec_meth = EC_KEY_METHOD_new(EC_KEY_OpenSSL())) == NULL)
      |         ^~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/openssl/ec.h:1279:44: note: declared here
 1279 | OSSL_DEPRECATEDIN_3_0 const EC_KEY_METHOD *EC_KEY_OpenSSL(void);
      |                                            ^~~~~~~~~~~~~~
/workspace/src/crypto/openssh/ssh-pkcs11-client.c:501:9: warning: 'EC_KEY_METHOD_get_sign' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  501 |         EC_KEY_METHOD_get_sign(ec_meth, &ec_sign, NULL, NULL);
      |         ^~~~~~~~~~~~~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/openssl/ec.h:1524:28: note: declared here
 1524 | OSSL_DEPRECATEDIN_3_0 void EC_KEY_METHOD_get_sign
      |                            ^~~~~~~~~~~~~~~~~~~~~~
/workspace/src/crypto/openssh/ssh-pkcs11-client.c:502:9: warning: 'EC_KEY_METHOD_set_sign' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  502 |         EC_KEY_METHOD_set_sign(ec_meth, ec_sign, NULL, ecdsa_do_sign);
      |         ^~~~~~~~~~~~~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/openssl/ec.h:1480:28: note: declared here
 1480 | OSSL_DEPRECATEDIN_3_0 void EC_KEY_METHOD_set_sign
      |                            ^~~~~~~~~~~~~~~~~~~~~~
/workspace/src/crypto/openssh/ssh-pkcs11-client.c:503:9: warning: 'EC_KEY_METHOD_get_init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  503 |         EC_KEY_METHOD_get_init(ec_meth, &ec_init, &helper->ec_finish,
      |         ^~~~~~~~~~~~~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/openssl/ec.h:1505:28: note: declared here
 1505 | OSSL_DEPRECATEDIN_3_0 void EC_KEY_METHOD_get_init
      |                            ^~~~~~~~~~~~~~~~~~~~~~
/workspace/src/crypto/openssh/ssh-pkcs11-client.c:505:9: warning: 'EC_KEY_METHOD_set_init' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  505 |         EC_KEY_METHOD_set_init(ec_meth, ec_init, ecdsa_do_finish,
      |         ^~~~~~~~~~~~~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/openssl/ec.h:1463:28: note: declared here
 1463 | OSSL_DEPRECATEDIN_3_0 void EC_KEY_METHOD_set_init
      |                            ^~~~~~~~~~~~~~~~~~~~~~
/workspace/src/crypto/openssh/ssh-pkcs11-client.c:509:9: warning: 'RSA_meth_dup' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  509 |         if ((rsa_meth = RSA_meth_dup(RSA_get_default_method())) == NULL)
      |         ^~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/openssl/rsa.h:475:35: note: declared here
  475 | OSSL_DEPRECATEDIN_3_0 RSA_METHOD *RSA_meth_dup(const RSA_METHOD *meth);
      |                                   ^~~~~~~~~~~~
/workspace/src/crypto/openssh/ssh-pkcs11-client.c:509:9: warning: 'RSA_get_default_method' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  509 |         if ((rsa_meth = RSA_meth_dup(RSA_get_default_method())) == NULL)
      |         ^~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/openssl/rsa.h:299:41: note: declared here
  299 | OSSL_DEPRECATEDIN_3_0 const RSA_METHOD *RSA_get_default_method(void);
      |                                         ^~~~~~~~~~~~~~~~~~~~~~
/workspace/src/crypto/openssh/ssh-pkcs11-client.c:511:9: warning: 'RSA_meth_get_finish' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  511 |         helper->rsa_finish = RSA_meth_get_finish(rsa_meth);
      |         ^~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/openssl/rsa.h:552:7: note: declared here
  552 | int (*RSA_meth_get_finish(const RSA_METHOD *meth)) (RSA *rsa);
      |       ^~~~~~~~~~~~~~~~~~~
/workspace/src/crypto/openssh/ssh-pkcs11-client.c:512:9: warning: 'RSA_meth_set1_name' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  512 |         if (!RSA_meth_set1_name(rsa_meth, "ssh-pkcs11-helper") ||
      |         ^~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/openssl/rsa.h:477:27: note: declared here
  477 | OSSL_DEPRECATEDIN_3_0 int RSA_meth_set1_name(RSA_METHOD *meth,
      |                           ^~~~~~~~~~~~~~~~~~
/workspace/src/crypto/openssh/ssh-pkcs11-client.c:513:13: warning: 'RSA_meth_set_priv_enc' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  513 |             !RSA_meth_set_priv_enc(rsa_meth, rsa_encrypt) ||
      |             ^
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/openssl/rsa.h:510:5: note: declared here
  510 | int RSA_meth_set_priv_enc(RSA_METHOD *rsa,
      |     ^~~~~~~~~~~~~~~~~~~~~
/workspace/src/crypto/openssh/ssh-pkcs11-client.c:514:13: warning: 'RSA_meth_set_finish' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  514 |             !RSA_meth_set_finish(rsa_meth, rsa_finish))
      |             ^
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/openssl/rsa.h:554:5: note: declared here
  554 | int RSA_meth_set_finish(RSA_METHOD *rsa, int (*finish) (RSA *rsa));
      |     ^~~~~~~~~~~~~~~~~~~
/workspace/src/crypto/openssh/ssh-pkcs11-client.c: In function 'pkcs11_start_helper':
/workspace/src/crypto/openssh/ssh-pkcs11-client.c:547:17: warning: 'RSA_meth_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  547 |                 RSA_meth_free(helper->rsa_meth);
      |                 ^~~~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/openssl/rsa.h:474:28: note: declared here
  474 | OSSL_DEPRECATEDIN_3_0 void RSA_meth_free(RSA_METHOD *meth);
      |                            ^~~~~~~~~~~~~
/workspace/src/crypto/openssh/ssh-pkcs11-client.c:549:17: warning: 'EC_KEY_METHOD_free' is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
  549 |                 EC_KEY_METHOD_free(helper->ec_meth);
      |                 ^~~~~~~~~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/openssl/ec.h:1462:28: note: declared here
 1462 | OSSL_DEPRECATEDIN_3_0 void EC_KEY_METHOD_free(EC_KEY_METHOD *meth);
      |                            ^~~~~~~~~~~~~~~~~~
--- all_subdir_cddl ---
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/locale:3116:30: warning: 'template<class _CharT> struct std::__1::char_traits' is deprecated: char_traits<T> for T not equal to char, wchar_t, char8_t, char16_t or char32_t is non-standard and is provided for a temporary period. It will be removed in LLVM 19, so please migrate off of it. [-Wdeprecated-declarations]
 3116 |   typedef basic_string<char, char_traits<char>, _ByteAlloc> byte_string;
      |                              ^~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/__fwd/string.h:23:29: note: declared here
   23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
      |                             ^~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/locale:3117:31: warning: 'template<class _CharT> struct std::__1::char_traits' is deprecated: char_traits<T> for T not equal to char, wchar_t, char8_t, char16_t or char32_t is non-standard and is provided for a temporary period. It will be removed in LLVM 19, so please migrate off of it. [-Wdeprecated-declarations]
 3117 |   typedef basic_string<_Elem, char_traits<_Elem>, _WideAlloc> wide_string;
      |                               ^~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/__fwd/string.h:23:29: note: declared here
   23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
      |                             ^~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/locale: In member function 'std::__1::wstring_convert<_Codecvt, _Elem, _WideAlloc, _ByteAlloc>::wide_string std::__1::wstring_convert<_Codecvt, _Elem, _WideAlloc, _ByteAlloc>::from_bytes(const char*)':
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/locale:3149:38: warning: 'template<class _CharT> struct std::__1::char_traits' is deprecated: char_traits<T> for T not equal to char, wchar_t, char8_t, char16_t or char32_t is non-standard and is provided for a temporary period. It will be removed in LLVM 19, so please migrate off of it. [-Wdeprecated-declarations]
 3149 |     return from_bytes(__ptr, __ptr + char_traits<char>::length(__ptr));
      |                                      ^~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/__fwd/string.h:23:29: note: declared here
   23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
      |                             ^~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/locale: In member function 'std::__1::wstring_convert<_Codecvt, _Elem, _WideAlloc, _ByteAlloc>::byte_string std::__1::wstring_convert<_Codecvt, _Elem, _WideAlloc, _ByteAlloc>::to_bytes(const _Elem*)':
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/locale:3158:38: warning: 'template<class _CharT> struct std::__1::char_traits' is deprecated: char_traits<T> for T not equal to char, wchar_t, char8_t, char16_t or char32_t is non-standard and is provided for a temporary period. It will be removed in LLVM 19, so please migrate off of it. [-Wdeprecated-declarations]
 3158 |     return to_bytes(__wptr, __wptr + char_traits<_Elem>::length(__wptr));
      |                                      ^~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/__fwd/string.h:23:29: note: declared here
   23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
      |                             ^~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/locale: At global scope:
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/locale:3176:8: warning: 'template<class _Codecvt, class _Elem, class _WideAlloc, class _ByteAlloc> class std::__1::wstring_convert' is deprecated [-Wdeprecated-declarations]
 3176 | inline wstring_convert<_Codecvt, _Elem, _WideAlloc, _ByteAlloc>::wstring_convert(_Codecvt* __pcvt, state_type __state)
      |        ^~~~~~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/locale:3114:56: note: declared here
 3114 | class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 wstring_convert {
      |                                                        ^~~~~~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/locale:3180:1: warning: 'template<class _Codecvt, class _Elem, class _WideAlloc, class _ByteAlloc> class std::__1::wstring_convert' is deprecated [-Wdeprecated-declarations]
 3180 | wstring_convert<_Codecvt, _Elem, _WideAlloc, _ByteAlloc>::wstring_convert(
      | ^~~~~~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/locale:3114:56: note: declared here
 3114 | class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 wstring_convert {
      |                                                        ^~~~~~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/locale:3189:8: warning: 'template<class _Codecvt, class _Elem, class _WideAlloc, class _ByteAlloc> class std::__1::wstring_convert' is deprecated [-Wdeprecated-declarations]
 3189 | inline wstring_convert<_Codecvt, _Elem, _WideAlloc, _ByteAlloc>::wstring_convert(wstring_convert&& __wc)
      |        ^~~~~~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/locale:3114:56: note: declared here
 3114 | class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 wstring_convert {
      |                                                        ^~~~~~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/locale:3256:10: warning: 'template<class _Codecvt, class _Elem, class _WideAlloc, class _ByteAlloc> class std::__1::wstring_convert' is deprecated [-Wdeprecated-declarations]
 3256 | typename wstring_convert<_Codecvt, _Elem, _WideAlloc, _ByteAlloc>::byte_string
      |          ^~~~~~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/locale:3114:56: note: declared here
 3114 | class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 wstring_convert {
      |                                                        ^~~~~~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/locale:3257:1: warning: 'template<class _Codecvt, class _Elem, class _WideAlloc, class _ByteAlloc> class std::__1::wstring_convert' is deprecated [-Wdeprecated-declarations]
 3257 | wstring_convert<_Codecvt, _Elem, _WideAlloc, _ByteAlloc>::to_bytes(const _Elem* __frm, const _Elem* __frm_end) {
      | ^~~~~~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/locale:3114:56: note: declared here
 3114 | class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 wstring_convert {
      |                                                        ^~~~~~~~~~~~~~~
--- all_subdir_sbin ---
--- all_subdir_sbin/mount_fusefs ---
--- getmntopts.o ---
--- all_subdir_cddl ---
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/locale:3324:62: warning: 'template<class _CharT> struct std::__1::char_traits' is deprecated: char_traits<T> for T not equal to char, wchar_t, char8_t, char16_t or char32_t is non-standard and is provided for a temporary period. It will be removed in LLVM 19, so please migrate off of it. [-Wdeprecated-declarations]
 3324 | template <class _Codecvt, class _Elem = wchar_t, class _Tr = char_traits<_Elem> >
      |                                                              ^~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/__fwd/string.h:23:29: note: declared here
   23 | struct _LIBCPP_TEMPLATE_VIS char_traits;
      |                             ^~~~~~~~~~~
--- all_subdir_sbin ---
/usr/local/bin/x86_64-unknown-freebsd14.0-gcc12 --sysroot=/tmp/obj/workspace/src/amd64.amd64/tmp -B/usr/local/x86_64-unknown-freebsd14.0/bin/  -O2 -pipe -fno-common -I/workspace/src/sbin/mount   -fPIE -g -MD  -MF.depend.getmntopts.o -MTgetmntopts.o -std=gnu99 -Wno-format-zero-length -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Wnested-externs -Wold-style-definition -Wno-pointer-sign -Wdate-time -Wno-error=address -Wno-error=array-bounds -Wno-error=attributes -Wno-error=bool-compare -Wno-error=cast-align -Wno-error=clobbered -Wno-error=deprecated-declarations -Wno-error=enum-compare -Wno-error=extra -Wno-error=logical-not-parentheses -Wno-error=strict-aliasing -Wno-error=uninitialized -Wno-error=unused-function -Wno-error=unused-value -Wno-error=empty-body -Wno-error=maybe-uninitialized -Wno-error=nonnull-compare -Wno-error=shift-negative-value -Wno-error=tautological-compare -Wno-error=unused-const-variable -Wno-error=bool-operation -Wno-error=deprecated -Wno-error=expansion-to-defined -Wno-error=format-overflow -Wno-error=format-truncation -Wno-error=implicit-fallthrough -Wno-error=int-in-bool-context -Wno-error=memset-elt-size -Wno-error=noexcept-type -Wno-error=nonnull -Wno-error=pointer-compare -Wno-error=stringop-overflow -Wno-error=aggressive-loop-optimizations -Wno-error=cast-function-type -Wno-error=catch-value -Wno-error=multistatement-macros -Wno-error=restrict -Wno-error=sizeof-pointer-memaccess -Wno-error=stringop-truncation -Wno-return-type        -c /workspace/src/sbin/mount/getmntopts.c -o getmntopts.o
--- all_subdir_stand ---
--- all_subdir_stand/i386/btx ---
===> stand/i386/btx (all)
--- include/machine ---
include/machine -> /workspace/src/sys/i386/include
--- include/x86 ---
include/x86 -> /workspace/src/sys/x86/include
--- all_subdir_stand/i386/btx/btx ---
===> stand/i386/btx/btx (all)
--- include/machine ---
--- all_subdir_usr.sbin ---
--- cron.full ---
--- all_subdir_stand ---
include/machine -> /workspace/src/sys/i386/include
--- include/x86 ---
include/x86 -> /workspace/src/sys/x86/include
--- btx.o ---
/usr/local/bin/x86_64-unknown-freebsd14.0-gcc12 --sysroot=/tmp/obj/workspace/src/amd64.amd64/tmp -B/usr/local/x86_64-unknown-freebsd14.0/bin/ -O2 -pipe -fno-common   -I/workspace/src/stand/i386/btx/lib -nostdinc    -I/tmp/obj/workspace/src/amd64.amd64/stand/libsa32 -I/workspace/src/stand/libsa -D_STANDALONE -I/workspace/src/sys -Ddouble=jagged-little-pill -Dfloat=floaty-mcfloatface -ffunction-sections -fdata-sections -DLOADER_GELI_SUPPORT -I/workspace/src/stand/libsa/geli -DLOADER_DISK_SUPPORT -m32 -ffreestanding -mno-mmx -mno-sse  -msoft-float -march=i386 -I. -Iinclude -DBTX_FLAGS=0x0 -I/workspace/src/stand/i386/common -MD  -MF.depend.btx.o -MTbtx.o -std=gnu99 -Wno-format-zero-length -Wsystem-headers -Werror -Wno-pointer-sign -Wdate-time -Wno-error=address -Wno-error=array-bounds -Wno-error=attributes -Wno-error=bool-compare -Wno-error=cast-align -Wno-error=clobbered -Wno-error=deprecated-declarations -Wno-error=enum-compare -Wno-error=extra -Wno-error=logical-not-parentheses -Wno-error=strict-aliasing -Wno-error=uninitialized -Wno-error=unused-function -Wno-error=unused-value -Wno-error=empty-body -Wno-error=maybe-uninitialized -Wno-error=nonnull-compare -Wno-error=shift-negative-value -Wno-error=tautological-compare -Wno-error=unused-const-variable -Wno-error=bool-operation -Wno-error=deprecated -Wno-error=expansion-to-defined -Wno-error=format-overflow -Wno-error=format-truncation -Wno-error=implicit-fallthrough -Wno-error=int-in-bool-context -Wno-error=memset-elt-size -Wno-error=noexcept-type -Wno-error=nonnull -Wno-error=pointer-compare -Wno-error=stringop-overflow -Wno-error=aggressive-loop-optimizations -Wno-error=cast-function-type -Wno-error=catch-value -Wno-error=multistatement-macros -Wno-error=restrict -Wno-error=sizeof-pointer-memaccess -Wno-error=stringop-truncation -Wno-return-type -Wno-address-of-packed-member  -Os -mpreferred-stack-boundary=2        -c /workspace/src/stand/i386/btx/btx/btx.S -o btx.o
--- all_subdir_usr.sbin ---
/usr/local/bin/x86_64-unknown-freebsd14.0-gcc12 --sysroot=/tmp/obj/workspace/src/amd64.amd64/tmp -B/usr/local/x86_64-unknown-freebsd14.0/bin/ -O2 -pipe -fno-common -DLOGIN_CAP -DPAM -fPIE -g -std=gnu99 -Wno-format-zero-length -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wdate-time -Wno-error=address -Wno-error=array-bounds -Wno-error=attributes -Wno-error=bool-compare -Wno-error=cast-align -Wno-error=clobbered -Wno-error=deprecated-declarations -Wno-error=enum-compare -Wno-error=extra -Wno-error=logical-not-parentheses -Wno-error=strict-aliasing -Wno-error=uninitialized -Wno-error=unused-function -Wno-error=unused-value -Wno-error=empty-body -Wno-error=maybe-uninitialized -Wno-error=nonnull-compare -Wno-error=shift-negative-value -Wno-error=tautological-compare -Wno-error=unused-const-variable -Wno-error=bool-operation -Wno-error=deprecated -Wno-error=expansion-to-defined -Wno-error=format-overflow -Wno-error=format-truncation -Wno-error=implicit-fallthrough -Wno-error=int-in-bool-context -Wno-error=memset-elt-size -Wno-error=noexcept-type -Wno-error=nonnull -Wno-error=pointer-compare -Wno-error=stringop-overflow -Wno-error=aggressive-loop-optimizations -Wno-error=cast-function-type -Wno-error=catch-value -Wno-error=multistatement-macros -Wno-error=restrict -Wno-error=sizeof-pointer-memaccess -Wno-error=stringop-truncation -Wno-return-type -Wno-address-of-packed-member  -Wl,-zrelro -pie -Wl,-znoexecstack   -o cron.full cron.o database.o do_command.o job.o user.o popen.o  -L/tmp/obj/workspace/src/amd64.amd64/usr.sbin/cron/lib -lcron_pie  -lpam  -lutil 
--- all_subdir_stand ---
--- all_subdir_stand/efi ---
===> stand/efi (all)
--- all_subdir_stand/i386 ---
--- btx ---
--- all_subdir_cddl ---
In file included from /tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/functional:542:
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/__functional/unary_negate.h:39:88: warning: 'template<class _Predicate> class std::__1::unary_negate' is deprecated [-Wdeprecated-declarations]
   39 | _LIBCPP_DEPRECATED_IN_CXX17 inline _LIBCPP_CONSTEXPR_SINCE_CXX14 _LIBCPP_HIDE_FROM_ABI unary_negate<_Predicate>
      |                                                                                        ^~~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/__functional/unary_negate.h:25:56: note: declared here
   25 | class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 unary_negate
      |                                                        ^~~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/__functional/unary_negate.h: In function 'constexpr std::__1::unary_negate<_Predicate> std::__1::not1(const _Predicate&)':
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/__functional/unary_negate.h:41:10: warning: 'template<class _Predicate> class std::__1::unary_negate' is deprecated [-Wdeprecated-declarations]
   41 |   return unary_negate<_Predicate>(__pred);
      |          ^~~~~~~~~~~~
/tmp/obj/workspace/src/amd64.amd64/tmp/usr/include/c++/v1/__functional/unary_negate.h:25:56: note: declared here
   25 | class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 unary_negate
      |                                                        ^~~~~~~~~~~~
--- all_subdir_stand ---
--- all_subdir_stand/efi ---
--- all_subdir_stand/efi/libefi ---
===> stand/efi/libefi (all)
--- all_subdir_usr.sbin ---
--- cron.8.gz ---
       64.82 real       135.43 user        18.33 sys

make[1]: stopped in /workspace/src

make: stopped in /workspace/src
Build step 'Execute shell' marked build as failure
[WARNINGS]Skipping publisher since build result is FAILURE
[PostBuildScript] - [INFO] Executing post build scripts.
[FreeBSD-main-amd64-gcc12_build] $ /bin/sh -xe /tmp/jenkins16410635360676592577.sh
+ sh freebsd-ci/scripts/jail/clean.sh
clean jail FreeBSD-main-amd64-gcc12_build
Checking for post-build
Performing post-build step
Checking if email needs to be generated
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any
Sending mail from default account using System Admin e-mail address