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

Builder curl-threaded-solaris11-sparc Build #5166

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

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

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartTue Jan 20 13:25:29 2026
EndTue Jan 20 15:15:58 2026
Elapsed1 hrs, 50 mins, 29 secs

All Changes:

:

  1. Change #255799

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 20 Jan 2026 13:05:01
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 09c9afdd711d0b2ee9f524a235803e755e1074b7

    Comments

    cmake: silence silly Apple clang warnings in C89 mode, test in CI
    - `stdbool.h` is also included via system headers. Disabling it from curl
      does not fix it. Silencing lots of these:
      ```
      curl/lib/curlx/warnless.h:64:1: warning: '_Bool' is a C99 extension [-Wc99-extensions]
       64 | bool curlx_sztouz(ssize_t sznum, size_t *puznum);
          | ^
      /Library/Developer/CommandLineTools/usr/lib/clang/17/include/stdbool.h:24:14: note: expanded from macro 'bool'
       24 | #define bool _Bool
          |              ^
      ```
    
    - silence `-Wcomma` warnings.
      in favor of the global silencing approach, since a couple of more of
      these were hit (in vquic, tool1622, unit1309, unit1636), and it seems
      silly to update them all.
      Revert e8189c44201db6bff987a8771df90f853d93dec5 #20362
    
    Also:
    - cmake: include C standard in 'platform flags' log line.
    - GHA/macos: switch a job to C89 to verify.
    - GHA/linux: show 'C89' in job names.
    
    Ref: https://cmake.org/cmake/help/v3.7/variable/CMAKE_C_STANDARD.html
    
    Closes #20363

    Changed files

    • .github/workflows/linux.yml
    • .github/workflows/macos.yml
    • CMake/PickyWarnings.cmake
    • CMakeLists.txt
    • src/tool_getparam.c