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

Builder curl-unthreaded-solaris11-sparc Build #5502

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision745344ea4e9214bdfa13714d0138ad685e0434fd
Got Revision745344ea4e9214bdfa13714d0138ad685e0434fd
Changes4 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 ...' ( 22 mins, 45 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 5502 Build
codebase Build
got_revision 745344ea4e9214bdfa13714d0138ad685e0434fd Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 745344ea4e9214bdfa13714d0138ad685e0434fd 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. Stefan Eissing
  2. Viktor Szakats
  3. renovate[bot]

Timing:

StartSat Mar 21 14:39:15 2026
EndSat Mar 21 15:48:00 2026
Elapsed1 hrs, 8 mins, 45 secs

All Changes:

:

  1. Change #261851

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 21 Mar 2026 13:24:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 89043ba90689418a115e967633e261139b48ce23

    Comments

    cmake: drop support for CMake 3.17 and older
    Require CMake 3.18 (2020-07-15) or newer, up from 3.7 (2016-11-11)
    prior to this patch.
    
    This requirement also applies to the distributed `curl-config.cmake`.
    
    To allow dropping compatibility code maintained for old versions, and to
    use features which were unpractical in separate code paths. Also to make
    testing, documentation and development easier, CI builds faster due to
    CMake performance improvements over time. (e.g. integration tests on
    macOS run 8x faster (10 minutes is now under 1.5m) in CI, 2.5x faster on
    Windows.)
    
    CMake offers pre-built binaries for major platforms. They work without
    an install step, just by unpacking and pointing the cmake command to
    them. Making upgrades easy in many cases:
    https://cmake.org/download/
    https://cmake.org/files/
    https://github.com/Kitware/CMake/releases
    
    CMake 3.18 brings these feature as generally available when building or
    consuming curl/libcurl:
    
    LTO support, improved performance, `pkg-config` and interface target
    support, `OBJECT` target (for faster libcurl builds), modern invocation
    with `-S`/`-B` options, better support for custom linker options,
    FetchContent, `GnuTLS::GnuTLS` target, `--verbose` and `--install`
    options, `CMAKE_GENERATOR` env, last but not least unity mode and Ninja
    generator.
    
    For maximum build speed, use:
    `-DCMAKE_UNITY_BUILD=ON -DCURL_DROP_UNUSED=ON`
    
    As for deprecations, C++11 is required to build CMake itself, which may
    be a limit on some platforms. autotools continues to cover them.
    
    Follow-up to 9bcdfb3809a41327054421368bdea77ea17e6f90 #20408
    Follow-up to a7c974e038572bd1d4a653afbd6de5fad5a10215 #19902
    Follow-up to dfbe035c8b39b056a234bc76df3f384f7a7a24af #10161
    Discussion: https://github.com/curl/curl/discussions/18704
    
    Closes #20407

    Changed files

    • .github/workflows/linux-old.yml
    • CMake/FindBrotli.cmake
    • CMake/FindCares.cmake
    • CMake/FindGSS.cmake
    • CMake/FindGnuTLS.cmake
    • CMake/FindLDAP.cmake
    • CMake/FindLibbacktrace.cmake
    • CMake/FindLibgsasl.cmake
    • CMake/FindLibidn2.cmake
    • CMake/FindLibpsl.cmake
    • CMake/FindLibrtmp.cmake
    • CMake/FindLibssh.cmake
    • CMake/FindLibssh2.cmake
    • CMake/FindLibuv.cmake
    • CMake/FindMbedTLS.cmake
    • CMake/FindNGHTTP2.cmake
    • CMake/FindNGHTTP3.cmake
    • CMake/FindNGTCP2.cmake
    • CMake/FindNettle.cmake
    • CMake/FindQuiche.cmake
    • CMake/FindRustls.cmake
    • CMake/FindWolfSSL.cmake
    • CMake/FindZstd.cmake
    • CMake/curl-config.in.cmake
    • CMakeLists.txt
    • appveyor.sh
    • appveyor.yml
    • docs/DEPRECATE.md
    • docs/INSTALL-CMAKE.md
    • docs/INTERNALS.md
    • docs/examples/CMakeLists.txt
    • lib/CMakeLists.txt
    • src/CMakeLists.txt
    • tests/cmake/CMakeLists.txt
    • tests/cmake/test.sh
  2. Change #261852

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 21 Mar 2026 13:30:37
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a8bc4cbcfe460d2d2a76759a91ff56eb63215c26

    Comments

    build: assume `snprintf()` in `mprintf`, drop feature check
    - it was already required for `curl_*printf()` float/double support.
    - some curl tests always fail without it.
    - it was already assumed to be present to build test servers.
      Source code did not check for `HAVE_SNPRINTF` detection variable.
    - it was already required to build examples.
    
    Windows builds stopped using this detection and the function via earlier
    commits.
    
    Follow-up to 64f28b8f8859fc80816f7db3b5c4b6f2fd84bd27 #20765
    Follow-up to 935b1bd4544a23a91d68ffb9f86983e92747e9a5 #9570 #9569
    
    Closes #20763

    Changed files

    • CMake/unix-cache.cmake
    • CMakeLists.txt
    • configure.ac
    • lib/curl_config-cmake.h.in
    • lib/mprintf.c
  3. Change #261853

    Category curl
    Changed by renovate[bot] <29139614+renovate[bot]ohnoyoudont@users.noreply.github.com>
    Changed at Sat 21 Mar 2026 13:32:52
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d560002551083012046aee8ca15b80ae7a052281

    Comments

    GHA: update dependency rustls/rustls-ffi to v0.15.1
    Closes #21044

    Changed files

    • .github/workflows/linux.yml
  4. Change #261867

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Sat 21 Mar 2026 14:28:54
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 745344ea4e9214bdfa13714d0138ad685e0434fd

    Comments

    hostip: fix !no_signal mixup in resolve refaactor
    When extracting the resolve case using alarm timers, the check for "we
    are not allowed to use signals" was refactored wrong.
    
    Follow-up to 96d5b5c688c48a8f58ded1563ed0c
    
    Closes #21047

    Changed files

    • lib/hostip.c
    • tests/http/test_06_eyeballs.py