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

Builder curl-unthreaded-solaris11-i386 Build #3912

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision30734e48d6719590967a6f3db31b02c5edbf2d9c
Got Revision30734e48d6719590967a6f3db31b02c5edbf2d9c
Changes7 changes

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 9 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 59 mins, 37 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-i386 slave
buildername curl-unthreaded-solaris11-i386 Builder
buildnumber 3912 Build
codebase Build
got_revision 30734e48d6719590967a6f3db31b02c5edbf2d9c Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 30734e48d6719590967a6f3db31b02c5edbf2d9c 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. Daniel Stenberg
  2. Stefan Eissing
  3. Viktor Szakats
  4. renovate[bot]

Timing:

StartTue Oct 21 17:43:46 2025
EndTue Oct 21 20:41:24 2025
Elapsed2 hrs, 57 mins, 38 secs

All Changes:

:

  1. Change #246331

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 21 Oct 2025 15:07:36
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 38c19edd67e705066379530bdc28ea6c25aba8df

    Comments

    cmake: say 'absolute path' in option descriptions and docs
    To not have to guess. Also to sync with autotools, which already uses
    this wording.
    
    Also:
    - replace the stray term 'folder' with 'directory' for consistency.
    - store help text in a temp variable to avoid overly long strings
      (mandatory in CMake <4.2.0 and can't be trivially split), also
      to avoid repeating this string 4 times.
    
    Ref: https://cmake.org/cmake/help/v4.2/command/set.html
    
    Closes #19169

    Changed files

    • CMake/FindBrotli.cmake
    • CMake/FindCares.cmake
    • CMake/FindGSS.cmake
    • CMake/FindGnuTLS.cmake
    • CMake/FindLDAP.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
    • CMakeLists.txt
    • docs/INSTALL-CMAKE.md
  2. Change #246340

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 21 Oct 2025 16:24:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 76d28525509c2c06786fc9b8d2e2e8536dceb3bc

    Comments

    hmac: free memory properly on errors
    If one of the hmac init calls fail, Curl_HMAC_init previously would
    return without first freeing the allocated HMAC_context.
    
    Fixes #19176
    Reported-by: WangDaLei on github
    Closes #19177

    Changed files

    • lib/hmac.c
  3. Change #246343

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Tue 21 Oct 2025 16:30:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 40f7cd2bdd14e09b9bb1b4ddefc8b5e5ce71865a

    Comments

    mime: fix unpausing of readers
    When unpausing a transfer, check if the reader pause state differs
    in addition to the "keepon" flags.
    
    Reported-by: 包布丁
    Fixes #18848
    Closes #19178

    Changed files

    • lib/easy.c
    • lib/sendf.c
    • tests/http/test_07_upload.py
    • tests/http/testenv/httpd.py
    • tests/http/testenv/mod_curltest/mod_curltest.c
    • tests/libtest/cli_hx_upload.c
  4. Change #246344

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 21 Oct 2025 16:33:32
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 48df7b29d905314c2c0c3b4b3f949569a490d3aa

    Comments

    cookie: only count accepted cookies in Curl_cookie_add
    The counter used to stop accepting cookies after a certain amount has
    been received in a single response would previously also count some
    cookies that were not actually accepted as they were discarded after the
    counter was increased.
    
    Starting now, the counter is increased only for cookies that were
    accepted.
    
    Pointed out by ZeroPath
    Closes #19157

    Changed files

    • lib/cookie.c
  5. Change #246348

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 21 Oct 2025 17:18:34
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 09f857803f5373e7a4052a488131b8bbea1bc453

    Comments

    INSTALL-CMAKE.md: add manual configuration examples
    Closes #19179

    Changed files

    • docs/INSTALL-CMAKE.md
  6. Change #246349

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 21 Oct 2025 17:18:35
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ea6455b7a4ed3dca3b2f03d6a0ae3ba101c16160

    Comments

    spelling: subdirectories
    Closes #19180

    Changed files

    • .github/scripts/badwords.txt
    • docs/cmdline-opts/list-only.md
    • packages/vms/curl_gnv_build_steps.txt
  7. Change #246351

    Category curl
    Changed by renovate[bot] <29139614+renovate[bot]ohnoyoudont@users.noreply.github.com>
    Changed at Tue 21 Oct 2025 17:33:46
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 30734e48d6719590967a6f3db31b02c5edbf2d9c

    Comments

    Dockerfile: update debian:bookworm-slim Docker digest to 78d2f66
    Closes #19173

    Changed files

    • Dockerfile