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

Builder curl-threaded-solaris11-sparc Build #4434

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 7 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 28 mins, 3 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-threaded-solaris11-sparc slave
buildername curl-threaded-solaris11-sparc Builder
buildnumber 4434 Build
codebase Build
got_revision 7ceb9c54aa6bc25aa16416834d0fef6cbe51f432 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 7ceb9c54aa6bc25aa16416834d0fef6cbe51f432 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:

StartFri Aug 29 03:12:20 2025
EndFri Aug 29 04:09:26 2025
Elapsed57 mins, 5 secs

All Changes:

:

  1. Change #244050

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 29 Aug 2025 03:07:42
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7ceb9c54aa6bc25aa16416834d0fef6cbe51f432

    Comments

    clang-tidy: disable `clang-analyzer-security.ArrayBound`
    It's causing false-positives with clang-tidy v21, in cases in system
    headers (seen in `FD_ISSET()` with macOS SDK). In some cases in
    tests/server, there was no distinct source line that was triggering it.
    
    Example:
    ```
    /Applications/Xcode_16.4.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.5.sdk/usr/include/sys/_types/_fd_def.h:83:10: error: Potential out of bound access to 'fds_read.fds_bits' with tainted index [clang-analyzer-security.ArrayBound,-warnings-as-errors]
       83 |                 return _p->fds_bits[(unsigned long)_fd / __DARWIN_NFDBITS] & ((__int32_t)(((unsigned long)1) << ((unsigned long)_fd % __DARWIN_NFDBITS)));
          |                        ^
    [...]
    /Users/runner/work/curl/curl/tests/server/socksd.c:679:5: note: Taking false branch
      679 |     if(rc < 0) {
          |     ^
    ```
    
    Closes #18422

    Changed files

    • .github/workflows/linux.yml
    • CMakeLists.txt
    • lib/Makefile.am
    • src/Makefile.am