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

Builder curl-ares-solaris10-sparc Build #3426

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision04c060b0044779a5728033b0773026fa0c43fcfe
Got Revision04c060b0044779a5728033b0773026fa0c43fcfe
Changes9 changes

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-ares-solaris10-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 33 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 5 hrs, 58 mins, 17 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 mins, 5 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/curl-ares-solaris10-sparc slave
buildername curl-ares-solaris10-sparc Builder
buildnumber 3426 Build
codebase Build
got_revision 04c060b0044779a5728033b0773026fa0c43fcfe Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 04c060b0044779a5728033b0773026fa0c43fcfe Build
scheduler schedule-curl-ares-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/curl-ares-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartMon Jan 26 12:52:00 2026
EndTue Jan 27 06:39:00 2026
Elapsed17 hrs, 46 mins, 59 secs

All Changes:

:

  1. Change #256339

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 25 Jan 2026 19:29:24
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4516023152f74ec055215d2bc6956e93f1818aaf

    Comments

    GHA: switch 3 more small jobs to `ubuntu-slim`
    Follow-up to 30c49db6f7ad64c6819181283fd0baff44815441 #20431
    
    Closes #20433

    Changed files

    • .github/workflows/checksrc.yml
    • .github/workflows/checkurls.yml
    • .github/workflows/distcheck.yml
  2. Change #256342

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 25 Jan 2026 20:49:04
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3e841630ece59c04e26058a761302f38370fd0cc

    Comments

    cmake: fix logic for openssl/zlib binutils ld workaround
    While working #16973, the binutils ld lib order workaround logic
    regressed so that it modified the wrong target, writing into the system
    `ZLIB::ZLIB` and `OpenSSL::Crypto` ones a `INTERFACE_LINK_LIBRARIES`
    property, instead of creating CURL-namespaced targets. Oddly enough,
    this also fixed the binutils ld lib ordering issue. It seems this
    property makes CMake insert each referenced library in two more
    positions (not at the very end though), which allows ld to resolve all
    symbols in the cases tested in CI.
    
    Fix by creating the indented namespaced targets, and also creating
    these in `curl-config.cmake` to be available when consuming libcurl.
    
    Note that the logic continues doing `get_target_property()` on the two
    system targets above. If these targets are defined manually and miss
    the `LOCATION` propery, or are defined as aliases, this command may
    fail. curl expects these targets be created by CMake's `FindZLIB` and
    `FindOpenSSL` built-in Find modules (or ones compatible). Ref: #20419
    
    The binutils ld issue is reproduced by these CI jobs:
     - Linux gcc glibc (amd64, arm64)
    - Windows gcc zlib-classic (x64)
    
    Currently using this curl-for-win revision:
    https://github.com/curl/curl-for-win/commit/7d12669dafc5aadb525415abde2152a44e10f07d
    Examples:
    https://github.com/curl/curl/actions/runs/21332437230/job/61399234023?pr=20427
    https://github.com/curl/curl/actions/runs/21332437230/job/61399234033?pr=20427
    
    Comparison of lib orders, as passed by CMake to the linker:
    
    without workaround (possibly breaking binutils `ld`):
    ```diff
     -framework [...]
     libssl.dylib
     libcrypto.dylib
     libz.tbd
     -lssh2 -lidn2
     libldap.tbd
     liblber.tbd
     -lbrotlidec -lbrotlicommon -lzstd -lnghttp2 -lpsl -lrtmp
     -lz
     -lssl
     -lcrypto
    ```
    
    before this patch:
    ```diff
     -framework [...]
     libssl.dylib
     libcrypto.dylib
     libz.tbd
    +libcrypto.dylib <== inserted via `INTERFACE_LINK_LIBRARIES`
    +libz.tbd        <== inserted via `INTERFACE_LINK_LIBRARIES`
     -lssh2 -lidn2
     libldap.tbd
     liblber.tbd
    +libcrypto.dylib <== inserted via `INTERFACE_LINK_LIBRARIES`
    +ibz.tbd         <== inserted via `INTERFACE_LINK_LIBRARIES`
     -lbrotlidec -lbrotlicommon -lzstd -lnghttp2 -lpsl -lrtmp
     -lz
     -lssl
     -lcrypto
    ```
    
    after this patch:
    ```diff
     -framework [...]
     libssl.dylib
     libcrypto.dylib
     libz.tbd
     -lssh2 -lidn2
     libldap.tbd
     liblber.tbd
     -lbrotlidec -lbrotlicommon -lzstd -lnghttp2 -lpsl -lrtmp
     -lz
     -lssl
     -lcrypto
    +libcrypto.dylib <== inserted via `CURL::OpenSSL_Crypto`
    +libz.tbd        <== inserted via `CURL::ZLIB`
    ```
    
    Bug: https://github.com/curl/curl/pull/20382#discussion_r2716660108
    Reverts: https://github.com/curl/curl/commit/615c43eae8f926418c8205b6fe4ff693e8fc6b7d
    Follow-up to 16f073ef49f94412000218c9f6ad04e3fd7e4d01 #16973
    
    Closes #20427

    Changed files

    • CMake/curl-config.in.cmake
    • CMakeLists.txt
  3. Change #256349

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 25 Jan 2026 22:37:56
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 795433b923fc7953ae0a20b44249055fe334ae33

    Comments

    cmake: enable binutils ld workaround for all toolchains at build-time
    To make it available for GCC if used when consuming libcurl.
    
    Also add comment to `curl-config.cmake` explaining why these odd targets
    are defined there.
    
    Bug: https://github.com/curl/curl/pull/20382#discussion_r2716660108
    Follow-up to 3e841630ece59c04e26058a761302f38370fd0cc #20427
    Follow-up to ef3101d1819928a7799309a16cc531818778e5c7 #20382
    Follow-up to 16f073ef49f94412000218c9f6ad04e3fd7e4d01 #16973
    
    Closes #20434

    Changed files

    • CMake/curl-config.in.cmake
    • CMakeLists.txt
  4. Change #256376

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 26 Jan 2026 02:08:02
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3aa4fbf2d4005a9017b660615f937d58559881d9

    Comments

    cmake: add `CURL_BUILD_EVERYTHING` option
    To build all targets in a single go, meaning curl and libcurl as normal,
    and tests and examples in addition. To build-test everything without
    running multiple cmake commands.
    
    Enable with:
    - `-DCURL_BUILD_EVERYTHING=ON`
      Special values: `QUICK` to build examples quickly for build test,
      `NOEXAMPLES` to not build examples.
    
    A well-equipped build takes 2.8s of configure time, and 1.7s to build
    everything (shared, unity, ninja, prefill), 1.4s with `QUICK`. Without
    this option it takes <1s to build curl/libcurl.
    
    Also: streamline `CURL_LINT` internal logic.
    
    Closes #20429

    Changed files

    • CMakeLists.txt
    • docs/INSTALL-CMAKE.md
    • docs/examples/CMakeLists.txt
    • tests/CMakeLists.txt
  5. 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
  6. 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
  7. Change #256394

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 26 Jan 2026 08:26:28
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ca7ef4b817cd91013ae754ee3a622951c089c6c0

    Comments

    BUG-BOUNTY.md: we stop the bug-bounty end of Jan 2026
    Remove mentions of the bounty and hackerone.
    
    Closes #20312

    Changed files

    • .github/ISSUE_TEMPLATE/bug_report.yml
    • README
    • README.md
    • SECURITY.md
    • docs/BUG-BOUNTY.md
    • docs/BUGS.md
    • docs/FAQ.md
    • docs/GOVERNANCE.md
    • docs/INFRASTRUCTURE.md
    • docs/SPONSORS.md
    • docs/VULN-DISCLOSURE-POLICY.md
  8. Change #256410

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 26 Jan 2026 12:08:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 63d75de95d3e3b93f4146539fa1b7d868641898f

    Comments

    GHA: sync up configure option order across builds
    Closes #20423

    Changed files

    • .github/workflows/http3-linux.yml
    • .github/workflows/linux-old.yml
    • .github/workflows/linux.yml
    • .github/workflows/non-native.yml
    • .github/workflows/windows.yml
  9. Change #256413

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 26 Jan 2026 12:28:25
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 04c060b0044779a5728033b0773026fa0c43fcfe

    Comments

    RELEASE-PROCEDURE.md: update future release dates

    Changed files

    • docs/RELEASE-PROCEDURE.md