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

Builder curl-ares-solaris11-sparc Build #6079

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision39628c50844eb8dd6f7416653a836fa0ec4d73eb
Got Revision39628c50844eb8dd6f7416653a836fa0ec4d73eb
Changes1 change

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

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

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-ares-solaris11-sparc slave
buildername curl-ares-solaris11-sparc Builder
buildnumber 6079 Build
codebase Build
got_revision 39628c50844eb8dd6f7416653a836fa0ec4d73eb Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 39628c50844eb8dd6f7416653a836fa0ec4d73eb Build
scheduler schedule-curl-ares-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartThu Jun 18 17:39:48 2026
EndThu Jun 18 18:26:35 2026
Elapsed46 mins, 47 secs

All Changes:

:

  1. Change #271676

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 18 Jun 2026 17:30:56
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 39628c50844eb8dd6f7416653a836fa0ec4d73eb

    Comments

    openssl: do not mix OpenSSL int result with `CURLcode` variable
    Seen with clang-22:
    ```
    lib/vtls/openssl.c:3538:14: error: implicit conversion from 'int' to enumeration type 'CURLcode' is invalid in C++ [-Werror,-Wimplicit-int-enum-cast]
     3538 |     result = SSL_ech_set1_server_names(octx->ssl,
          |            ~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     3539 |                                        peer->origin->hostname, outername,
          |                                        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     3540 |                                        0 /* do send outer */);
          |                                        ~~~~~~~~~~~~~~~~~~~~~~
    1 error generated.
    ```
    Ref: https://github.com/curl/curl/actions/runs/27769068896/job/82163712258#step:42:43
    
    Cherry-picked from #22086
    
    Closes #22087

    Changed files

    • lib/vtls/openssl.c