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

Builder curl-ares-solaris10-i386 Build #3414

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision203b4349af3e1bfd06226ebb574af524b0a37276
Got Revision203b4349af3e1bfd06226ebb574af524b0a37276
Changes4 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 9 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 1 hrs, 14 mins, 11 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-ares-solaris10-i386 slave
buildername curl-ares-solaris10-i386 Builder
buildnumber 3414 Build
codebase Build
got_revision 203b4349af3e1bfd06226ebb574af524b0a37276 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 203b4349af3e1bfd06226ebb574af524b0a37276 Build
scheduler schedule-curl-ares-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Stefan Eissing

Timing:

StartThu May 22 00:12:14 2025
EndThu May 22 03:54:49 2025
Elapsed3 hrs, 42 mins, 34 secs

All Changes:

:

  1. Change #230466

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Wed 21 May 2025 22:54:25
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 35e1e7be22df543ead520392af1d8f022e77203c

    Comments

    url: reduce complexity of url_match_conn
    Split off the function code into several static helpers according to
    aspects checked.
    
    closes #17408

    Changed files

    • lib/multi.c
    • lib/url.c
    • lib/urldata.h
  2. Change #230467

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 21 May 2025 22:55:04
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 497d3c7b016e8e004dcafef96e34070a5d8033e0

    Comments

    ftplistparser: protect more cases decrementing 'len'
    So that they never wrap. More Coverity remarks.
    
    Closes #17406

    Changed files

    • lib/ftplistparser.c
  3. Change #230468

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 21 May 2025 22:56:02
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4a2bd8e458bde719ce7dbe8596dd89e6d236bb14

    Comments

    mprintf: move outputs into separate functions
    To make everything easier to read and follow.
    
    Closes #17409

    Changed files

    • lib/mprintf.c
  4. Change #230469

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 21 May 2025 22:59:13
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 203b4349af3e1bfd06226ebb574af524b0a37276

    Comments

    GHA: add a job to check function complexity
    - Done with the new top-complexity script which uses the pmccabe tool.
    
    - Any function scoring over 100 makes the test fail
    
    - The script outputs all functions scoring over 70
    
    - Two >100 functions are whitelisted by name, but they are not allowed
      to increase their scores.
    
    Closes #17398

    Changed files

    • .github/workflows/checksrc.yml
    • scripts/Makefile.am
    • scripts/top-complexity