Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder curl-unthreaded-solaris11-sparc Build #5390

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision86a2a6b5477b848f405f9c93d7a56343349d6e4b
Got Revision86a2a6b5477b848f405f9c93d7a56343349d6e4b
Changes2 changes

BuildSlave:

unstable11s

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-unthreaded-solaris11-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 6 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 25 mins, 46 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 0 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-unthreaded-solaris11-sparc slave
buildername curl-unthreaded-solaris11-sparc Builder
buildnumber 5390 Build
codebase Build
got_revision 86a2a6b5477b848f405f9c93d7a56343349d6e4b Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 86a2a6b5477b848f405f9c93d7a56343349d6e4b Build
scheduler schedule-curl-unthreaded-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Díaz
  2. Viktor Szakats

Timing:

StartTue Mar 3 01:24:07 2026
EndTue Mar 3 02:44:11 2026
Elapsed1 hrs, 20 mins, 4 secs

All Changes:

:

  1. Change #259635

    Category curl
    Changed by Daniel Díaz <daniel.diazohnoyoudont@sonos.com>
    Changed at Tue 03 Mar 2026 00:28:35
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3aa63896ae7a745fc50fa9cfa0bef0adb74462f6

    Comments

    mbedtls: guard TLS 1.3 + session tickets usage inside ifdef
    If TLS 1.3 is not supported, the call to
    `mbedtls_ssl_conf_tls13_enable_signal_new_session_tickets()` fails
    during compilation:
    ```
    curl-8.18.0/lib/vtls/mbedtls.c: In function 'mbed_connect_step1':
    curl-8.18.0/lib/vtls/mbedtls.c:809:3: error: implicit declaration of function 'mbedtls_ssl_conf_tls13_enable_signal_new_session_tickets' [-Werror=implicit-function-declaration]
       mbedtls_ssl_conf_tls13_enable_signal_new_session_tickets(&backend->config,
       ^
    curl-8.18.0/lib/vtls/mbedtls.c:809:3: warning: nested extern declaration of 'mbedtls_ssl_conf_tls13_enable_signal_new_session_tickets' [-Wnested-externs]
    ```
    
    Protect this call inside the `#ifdef` block by making sure that support
    for TLS 1.3 is defined.
    
    Closes #20789

    Changed files

    • lib/vtls/mbedtls.c
  2. Change #259642

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 03 Mar 2026 00:46:41
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 86a2a6b5477b848f405f9c93d7a56343349d6e4b

    Comments

    cmake: stop disabling C4774 after replacing `snprintf()`, update comment (MSVC)
    - update comment for `-wd4710` option.
      Ref: https://ci.appveyor.com/project/curlorg/curl/builds/53627545
    - stop suppressing C4774. Not triggered by the replacement call
      `vsnprintf()`, as also confirmed by local tests.
      Follow-up to https://github.com/curl/curl/commit/192b9214a7cf9082665ce460617308cb4836850b
      Ref: https://devblogs.microsoft.com/cppblog/format-specifiers-checking/
      Ref: https://learn.microsoft.com/cpp/error-messages/compiler-warnings/compiler-warnings-c4600-through-c4799
    
    Follow-up to 64f28b8f8859fc80816f7db3b5c4b6f2fd84bd27 #20765
    
    Closes #20792

    Changed files

    • CMake/PickyWarnings.cmake