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

Builder curl-ares-solaris11-sparc Build #5889

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisiona076f821e1744a68e9c659ebe7092bf9bedbd0b9
Got Revisiona076f821e1744a68e9c659ebe7092bf9bedbd0b9
Changes2 changes

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 5 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 2 mins, 40 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-ares-solaris11-sparc slave
buildername curl-ares-solaris11-sparc Builder
buildnumber 5889 Build
codebase Build
got_revision a076f821e1744a68e9c659ebe7092bf9bedbd0b9 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision a076f821e1744a68e9c659ebe7092bf9bedbd0b9 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 May 21 15:22:53 2026
EndThu May 21 16:07:20 2026
Elapsed44 mins, 27 secs

All Changes:

:

  1. Change #267960

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 21 May 2026 15:16:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 64c51ad1785fbf09c944a35f5566163b50a861b3

    Comments

    cmake: opt in `MSVC_VERSION` 1951 to picky warnings
    Closes #21714

    Changed files

    • CMake/PickyWarnings.cmake
  2. Change #267961

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 21 May 2026 15:16:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a076f821e1744a68e9c659ebe7092bf9bedbd0b9

    Comments

    multi: silence gcc 16 `-Wnull-dereference`, bump CI job to test
    - GHA/windows: bump dl-mingw job from gcc 15 to 16.
    
    - multi: silence warning while building libcurlu:
      ```
      In function 'multi_ischanged',
          inlined from 'multi_socket.isra' at D:/a/curl/curl/lib/multi.c:3282:6:
      D:/a/curl/curl/lib/multi.c:1710:17: error: null pointer dereference [-Werror=null-dereference]
       1710 |   bool retval = (bool)multi->recheckstate;
            |                 ^~~~~~~~~~~~~~~~~~~~~~~~~
      D:/a/curl/curl/lib/multi.c:1712:25: error: null pointer dereference [-Werror=null-dereference]
       1712 |     multi->recheckstate = FALSE;
            |                         ^
      ```
      Ref: https://github.com/curl/curl/actions/runs/26217071531/job/77142119137?pr=21707
    
    - multi: silence another `-Wnull-dereference`, popping up in libcurl
      with gcc 13 after the previous silencing:
      ```
      In function 'Curl_multi_xfers_running',
          inlined from 'multi_socket.isra' at ../../lib/multi.c:3292:28:
      ../../lib/multi.c:4132:15: error: null pointer dereference [-Werror=null-dereference]
       4132 |   return multi->xfers_alive;
            |          ~~~~~^~~~~~~~~~~~~
      ```
      Ref: https://github.com/curl/curl/actions/runs/26218822231/job/77148186045
    
    - multi: also add `DEBUGASSERT(multi)` to the two updated functions.
    
    Closes #21707

    Changed files

    • .github/workflows/windows.yml
    • lib/multi.c