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

Builder curl-threaded-solaris11-sparc Build #5207

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision26c39d8df182a63d28d81ed2b044e6a343519d1a
Got Revision26c39d8df182a63d28d81ed2b044e6a343519d1a
Changes1 change

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 8 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 34 mins, 10 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-threaded-solaris11-sparc slave
buildername curl-threaded-solaris11-sparc Builder
buildnumber 5207 Build
codebase Build
got_revision 26c39d8df182a63d28d81ed2b044e6a343519d1a Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 26c39d8df182a63d28d81ed2b044e6a343519d1a Build
scheduler schedule-curl-threaded-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-threaded-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartMon Jan 26 05:26:35 2026
EndMon Jan 26 07:11:55 2026
Elapsed1 hrs, 45 mins, 19 secs

All Changes:

:

  1. Change #256380

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 26 Jan 2026 05:21:24
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 26c39d8df182a63d28d81ed2b044e6a343519d1a

    Comments

    cmke: add `*_USE_STATIC_LIBS` options for 9 dependencies
    Via options:
    
    - `BROTLI_USE_STATIC_LIBS`
    - `CARES_USE_STATIC_LIBS`
    - `LIBSSH_USE_STATIC_LIBS`
    - `LIBSSH2_USE_STATIC_LIBS`
    - `MBEDTLS_USE_STATIC_LIBS`
    - `NGHTTP2_USE_STATIC_LIBS`
    - `NGHTTP3_USE_STATIC_LIBS`
    - `NGTCP2_USE_STATIC_LIBS`
    - `ZSTD_USE_STATIC_LIBS`
    
    When enabled, make a "best effort" finding static libs first and set
    the "build static" macro (on Windows) as required by the dependency.
    
    When doing `pkg-config`-based detections, make curl select the static
    configuration, which shall set the "build static" macro also.
    
    These options resemble CMake's `OPENSSL_USE_STATIC_LIBS` and
    `ZLIB_USE_STATIC_LIBS` (the latter does not support `pkg-config` as of
    CMake v4.2.2).
    
    Shared/static library selection based on loose filename conventions is
    fragile and prone to break if the non-static-suffixed library is found
    and happens to be a shared library, or, if the linker decides to pick up
    a shared copy (e.g. `.a.dll`) that shadows the static one. It may help
    to provide either static or shared, but not both, on the disk, and match
    that with this setting.
    
    Experimental.
    
    Ref: #20013
    Closes #20015

    Changed files

    • CMake/FindBrotli.cmake
    • CMake/FindCares.cmake
    • CMake/FindLibssh.cmake
    • CMake/FindLibssh2.cmake
    • CMake/FindMbedTLS.cmake
    • CMake/FindNGHTTP2.cmake
    • CMake/FindNGHTTP3.cmake
    • CMake/FindNGTCP2.cmake
    • CMake/FindZstd.cmake
    • docs/INSTALL-CMAKE.md