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

Builder curl-ares-solaris11-sparc Build #4318

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 8 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 28 mins, 4 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-sparc slave
buildername curl-ares-solaris11-sparc Builder
buildnumber 4318 Build
codebase Build
got_revision 034612cd515f249453a435f3d94b04f65744a54d Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 034612cd515f249453a435f3d94b04f65744a54d Build
scheduler schedule-curl-ares-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Stefan Eissing
  3. renovate[bot]

Timing:

StartWed Aug 6 09:18:56 2025
EndWed Aug 6 10:41:53 2025
Elapsed1 hrs, 22 mins, 57 secs

All Changes:

:

  1. Change #242217

    Category curl
    Changed by renovate[bot] <29139614+renovate[bot]ohnoyoudont@users.noreply.github.com>
    Changed at Wed 06 Aug 2025 08:41:44
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a1e4e8143108a6963737b5b29876c3702c054d17

    Comments

    GHA: update actions/download-artifact action to v5
    Closes #18193

    Changed files

    • .github/workflows/distcheck.yml
  2. Change #242218

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 06 Aug 2025 08:42:39
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision aec28f3ad3b4605951b544d2813c7de3a17ecc35

    Comments

    splay: add another assert for detected usage problem
    Closes #18199

    Changed files

    • lib/splay.c
  3. Change #242219

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Wed 06 Aug 2025 08:47:12
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 6d5570c4dd0a874730ccfdbe885017b77dab7ffc

    Comments

    lib: replace conn [write]sockfd members by index
    The `connectdata` members `sockfd` and `writesockfd` needed to by either
    CURL_SOCKET_BAD or a copy of one of `conn->sock[2]`. When equal to one,
    that index was used to send/recv/poll the proper socket or connection
    filter chain.
    
    Replace those with `send_idx` and `recv_idx` which are either -1, 0 or 1
    to indicate which socket/filter to send/receive on.
    
    Closes #18179

    Changed files

    • lib/cfilters.c
    • lib/http.c
    • lib/multi.c
    • lib/transfer.c
    • lib/url.c
    • lib/urldata.h
    • lib/vssh/libssh.c
    • lib/vssh/libssh2.c
    • lib/vssh/wolfssh.c
  4. Change #242220

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 06 Aug 2025 08:47:53
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 034612cd515f249453a435f3d94b04f65744a54d

    Comments

    tool_urlglob: polish, cleanups, improvements
    - assert instead of printing "internal error" for unlikely events
    - avoid allocating the main struct
    - convert globerror() from macro to function
    - renames to shorter and clearer names
    - malloc + copy => memdup0
    - change buffer handling to dynbuf
    - realloc to handle more globs, but use less memory for few
    
    Closes #18198

    Changed files

    • src/tool_cfgable.h
    • src/tool_operate.c
    • src/tool_urlglob.c
    • src/tool_urlglob.h