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

Builder curl-ares-solaris11-i386 Build #5121

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 3 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 3 mins, 53 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-i386 slave
buildername curl-ares-solaris11-i386 Builder
buildnumber 5121 Build
codebase Build
got_revision a076f821e1744a68e9c659ebe7092bf9bedbd0b9 Git
osplatform I386 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-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris11-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartThu May 21 16:36:45 2026
EndThu May 21 18:19:24 2026
Elapsed1 hrs, 42 mins, 38 secs

All Changes:

:

  1. Change #267956

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

    Comments

    GHA/windows: bump windows-2025 runners to windows-2025-vs2026
    To silence:
    ```
    NOTICE: windows-2025 requests are being redirected to windows-2025-vs2026 by June 15, 2026
    ```
    
    Closes #21713

    Changed files

    • .github/workflows/windows.yml
  2. 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
  3. 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