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

Builder curl-unthreaded-solaris11-i386 Build #4552

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 16 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 52 mins, 10 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-unthreaded-solaris11-i386 slave
buildername curl-unthreaded-solaris11-i386 Builder
buildnumber 4552 Build
codebase Build
got_revision 2da1bbca96cd97eaa96e8f44bb34df2b56b5d7e4 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 2da1bbca96cd97eaa96e8f44bb34df2b56b5d7e4 Build
scheduler schedule-curl-unthreaded-solaris11-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris11-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartMon Jan 26 06:17:14 2026
EndMon Jan 26 09:18:23 2026
Elapsed3 hrs, 1 mins, 8 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
  2. Change #256385

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

    Comments

    tests: rename more `CURLcode` variables to `result`
    For consistency.
    
    Also:
    - one remaining in `src/tool_writeout.c`.
    - replace casting an `int` to `CURLcode`.
    - lib758: rename `CURLMcode` `result` to `mresult`.
    - move literals to the right side of if expressions.
    
    Follow-up to d0dc6e2ec059bf306f32e7a49e9ff7425cd26fcd #20426
    Follow-up to 56f600ec23cab41fcced293ada81c8a30ac9cc87
    
    Closes #20432

    Changed files

    • src/tool_writeout.c
    • tests/libtest/cli_tls_session_reuse.c
    • tests/libtest/cli_ws_data.c
    • tests/libtest/lib1156.c
    • tests/libtest/lib1509.c
    • tests/libtest/lib1597.c
    • tests/libtest/lib1939.c
    • tests/libtest/lib2032.c
    • tests/libtest/lib3026.c
    • tests/libtest/lib3027.c
    • tests/libtest/lib512.c
    • tests/libtest/lib530.c
    • tests/libtest/lib586.c
    • tests/libtest/lib643.c
    • tests/libtest/lib678.c
    • tests/libtest/lib758.c
    • tests/server/getpart.c
    • tests/unit/unit1302.c
    • tests/unit/unit1305.c
    • tests/unit/unit1608.c
    • tests/unit/unit1620.c
    • tests/unit/unit1651.c
    • tests/unit/unit1654.c
    • tests/unit/unit1656.c
    • tests/unit/unit1657.c
    • tests/unit/unit1660.c
    • tests/unit/unit1663.c
    • tests/unit/unit2600.c
    • tests/unit/unit2601.c
    • tests/unit/unit2602.c
    • tests/unit/unit2603.c
    • tests/unit/unit2605.c
    • tests/unit/unit3200.c