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

Builder curl-threaded-solaris10-i386 Build #3511

Results:

Retry lost remote

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision17f2a220a99db30bacd66df4df677dfb0a18b405
Changes5 changes

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-threaded-solaris10-i386' triggered this build

Steps and Logfiles:

  1. git  
    1. - no logs -
    1. - no logs -
    1. - no logs -
  2. Runtest  
    1. - no logs -
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-threaded-solaris10-i386 slave
buildername curl-threaded-solaris10-i386 Builder
buildnumber 3511 Build
codebase Build
project curl Build
repository https://github.com/curl/curl.git Build
revision 17f2a220a99db30bacd66df4df677dfb0a18b405 Build
scheduler schedule-curl-threaded-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-threaded-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel McCarney
  2. Theodore A. Roth
  3. Viktor Szakats

Timing:

StartSun Jun 15 08:51:19 2025
EndSun Jun 15 11:59:06 2025
Elapsed3 hrs, 7 mins, 47 secs

All Changes:

:

  1. Change #232238

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 15 Jun 2025 01:31:34
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision bb7ea30fb604cdd9059d85eafe972349f56c42b0

    Comments

    GHA/windows: enable H3 in the MSVC OpenSSL job
    Requires windows-runner 20250602.1 for ngtcp2 1.13.0.
    
    Follow-up to c129d0b1a8769b352a3cf906fa0d3919b4a8ea3d #17561
    Ref: https://github.com/curl/curl/pull/17561#issuecomment-2959583138
    
    Closes #17577

    Changed files

    • .github/workflows/windows.yml
  2. Change #232240

    Category curl
    Changed by Daniel McCarney <danielohnoyoudont@binaryparadox.net>
    Changed at Sun 15 Jun 2025 01:38:25
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4dabcf4c48be33b92a430b1f49670d86a8ea5b80

    Comments

    lib: remove superfluous setopt break for CURLOPT_SSL_FALSESTART
    Reported-by: 4lan.m
    Ref: https://github.com/curl/curl/commit/1e2e808defe6850295baa002d07cde9a129ec791#r159957160
    Follow-up to 1e2e808defe6850295baa002d07cde9a129ec791 #17595
    
    Closes #17615

    Changed files

    • lib/setopt.c
  3. Change #232241

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 15 Jun 2025 01:38:26
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 924c7e15dce54cfe70920e4a3bad4886835f1c4e

    Comments

    tidy-up: update deprecated status of some symbols/options
    `CURLOPT_SSL_FALSESTART` / `--false-start`, Secure Transport, BearSSL,
    GSKit, MesaLink, NSS.
    
    Follow-up to 1e2e808defe6850295baa002d07cde9a129ec791 #17595
    Follow-up to 08a3e8e19a59d1530bfb208e187ac7c34c978dfd #16677
    
    Closes #17605

    Changed files

    • docs/cmdline-opts/false-start.md
    • docs/libcurl/curl_easy_setopt.md
    • docs/libcurl/opts/CURLOPT_SSL_FALSESTART.md
    • docs/libcurl/symbols-in-versions
    • include/curl/curl.h
    • src/tool_listhelp.c
  4. Change #232244

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 15 Jun 2025 02:02:28
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2f312a14da94068d58b6a39f79f82acd0bf82149

    Comments

    warnless: replace `read()`/`write()` wrapper functions with macros (Windows)
    Map them to `_read()`/`_write()` (with underscore) to avoid recursive
    mapping and to use the non-compatibility naming on Windows.
    
    https://learn.microsoft.com/cpp/c-runtime-library/reference/read
    https://learn.microsoft.com/cpp/c-runtime-library/reference/write
    
    Follow-up to 6239146e931fd3127f6994975a56d1b4884a708a
    
    Closes #17619

    Changed files

    • lib/curlx/warnless.c
    • lib/curlx/warnless.h
  5. Change #232247

    Category curl
    Changed by Theodore A. Roth <trothohnoyoudont@openavr.org>
    Changed at Sun 15 Jun 2025 05:15:04
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 17f2a220a99db30bacd66df4df677dfb0a18b405

    Comments

    openssl: Fix openssl engines
    - Return CURLE_OK if the engine successfully loaded.
    
    Prior to this change:
    
    When loading an openssl engine, the result code is initialized to
    CURLE_SSL_ENGINE_NOTFOUND, but is never set to CURLE_OK when the engine
    was successfully loaded. This causes curl to error out, falsely stating
    engine not found when it actually was.
    
    Broken since f2ce6c46 (precedes 8.14.0) which added support for using
    engines and providers at the same time.
    
    Fixes https://github.com/curl/curl/issues/17617
    Closes https://github.com/curl/curl/pull/17618

    Changed files

    • lib/vtls/openssl.c