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

Builder curl-ares-solaris11-i386 Build #3638

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 11 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 54 mins, 14 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 3638 Build
codebase Build
got_revision 85bf8b19acd9a346c239e3c8c853f0dbe440070e Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 85bf8b19acd9a346c239e3c8c853f0dbe440070e 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
  2. Yedaya Katsman
  3. renovate[bot]

Timing:

StartMon Jun 23 00:05:58 2025
EndMon Jun 23 03:05:45 2025
Elapsed2 hrs, 59 mins, 46 secs

All Changes:

:

  1. Change #237458

    Category curl
    Changed by Yedaya Katsman <yedaya.kaohnoyoudont@gmail.com>
    Changed at Sun 22 Jun 2025 22:31:11
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8128a17e714049c446e60b3f20d7f903c392b398

    Comments

    rustls: don't try printing the not provided file
    Caught by gcc (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0:
    ```
    vtls/rustls.c: In function ‘cr_connect’:
    vtls/rustls.c:857:61: warning: ‘%s’ directive argument is null [-Wformat-overflow=]
      857 |     failf(data, "rustls: must provide certificate with key '%s'",
          |                                                             ^~
    ```
    
    Closes #17704

    Changed files

    • lib/vtls/rustls.c
  2. Change #237461

    Category curl
    Changed by renovate[bot] <29139614+renovate[bot]ohnoyoudont@users.noreply.github.com>
    Changed at Sun 22 Jun 2025 22:43:15
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9a26be1e6ad45eb6c46af1d7a5e0be273b14fe1b

    Comments

    GHA: update msys2/setup-msys2 digest to 40677d3
    After:
    MINGW64_NT-10.0-20348 runnervmdy573 3.6.3-1f8def9f.x86_64 2025-06-18 07:19 UTC x86_64 Msys
    
    Before:
    MINGW64_NT-10.0-20348 runnervmdy573 3.5.7-2644508f.x86_64 2025-02-06 19:32 UTC x86_64 Msys
    
    Closes #17708

    Changed files

    • .github/workflows/distcheck.yml
    • .github/workflows/windows.yml
  3. Change #237469

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 22 Jun 2025 23:08:46
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9837dd429a0998341aaf70b377f17506a7e9f0d5

    Comments

    GHA/windows: drop MSYS2 runtime downgrades
    No longer necessary after bumping the default runtime to a version
    fixing the previously experienced performance drop.
    
    Thanks to MSYS2/Cygwin teams for the help and fix.
    
    Follow-up to 9a26be1e6ad45eb6c46af1d7a5e0be273b14fe1b #17708
    Follow-up to d4896d94f2e9530d47bf519c9d9b790720bf10a4 #16424
    
    Closes #17710

    Changed files

    • .github/workflows/windows.yml
  4. Change #237471

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 22 Jun 2025 23:08:46
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e088e104549421914da9170eeead72a43d42c028

    Comments

    cmake: replace the way clang-tidy verifies tests, fix issues found
    Replace existing `mk-unity.pl` `--embed` workaround with running
    `clang-tidy` manually on individual test source instead. This aligns
    with how clang-tidy works and removes `mk-unity.pl` from the solution.
    
    Also:
    - mqttd: fix potentially uninitialized buffer by zero filling it.
      ```
      tests/server/mqttd.c:484:41: error: The left operand of '<<' is a garbage value
        [clang-analyzer-core.UndefinedBinaryOperatorResult,-warnings-as-errors]
        484 |       payload_len = (size_t)(buffer[10] << 8) | buffer[11];
            |                                         ^
      [...]
      tests/server/mqttd.c:606:45: error: The left operand of '<<' is a garbage value
        [clang-analyzer-core.UndefinedBinaryOperatorResult,-warnings-as-errors]
        606 |       topiclen = (size_t)(buffer[1 + bytes] << 8) | buffer[2 + bytes];
            |                                             ^
      ```
    - sockfilt: fix potential out-of-bound pointer:
      ```
      tests/server/sockfilt.c:1128:33: error: The 2nd argument to 'send' is a buffer
         with size 17010 but should be a buffer with size equal to or greater than
         the value of the 3rd argument (which is 18446744073709551615)
         [clang-analyzer-unix.StdCLibraryFunctions,-warnings-as-errors]
       1128 |         ssize_t bytes_written = swrite(sockfd, buffer, buffer_len);
            |                                 ^
      ```
    - clang-tidy: suppress bogus `bzero()` warnings that happens
      inside the notorious `FD_ZERO()` macros, on macOS.
    
    Ref: https://github.com/curl/curl/pull/17680#issuecomment-2991730158
    
    Closes #17705

    Changed files

    • .github/workflows/linux.yml
    • CMake/Macros.cmake
    • CMakeLists.txt
    • lib/Makefile.am
    • scripts/mk-unity.pl
    • src/Makefile.am
    • tests/CMakeLists.txt
    • tests/client/CMakeLists.txt
    • tests/libtest/CMakeLists.txt
    • tests/server/CMakeLists.txt
    • tests/server/mqttd.c
    • tests/server/sockfilt.c
    • tests/tunit/CMakeLists.txt
    • tests/unit/CMakeLists.txt
  5. Change #237480

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 22 Jun 2025 23:42:14
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 85bf8b19acd9a346c239e3c8c853f0dbe440070e

    Comments

    cmake: sync tests scripts with each other and autotools (more)
    Closes #17711

    Changed files

    • tests/tunit/CMakeLists.txt
    • tests/unit/CMakeLists.txt