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

Builder curl-threaded-solaris10-sparc Build #2335

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision7fbcf4b9b74ffe7656941ca7721401834c4c8113
Got Revision7fbcf4b9b74ffe7656941ca7721401834c4c8113
Changes3 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 18 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 2 hrs, 26 mins, 17 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 0 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/curl-threaded-solaris10-sparc slave
buildername curl-threaded-solaris10-sparc Builder
buildnumber 2335 Build
codebase Build
got_revision 7fbcf4b9b74ffe7656941ca7721401834c4c8113 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 7fbcf4b9b74ffe7656941ca7721401834c4c8113 Build
scheduler schedule-curl-threaded-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/curl-threaded-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartWed Oct 16 12:59:23 2024
EndWed Oct 16 20:12:26 2024
Elapsed7 hrs, 13 mins, 2 secs

All Changes:

:

  1. Change #211836

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 16 Oct 2024 11:55:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 083b4ab6e46e157d209764a60e60913426aae7b7

    Comments

    libssh2: put the readdir buffers into struct
    ... instead of separate malloc() calls:
    
    - removes two mallocs (and associated error handling paths)
    - makes cleanup easier
    
    Also reduce maximum SFTP file path lengths to 1024 bytes universally
    everywhere. Using the system's own MAX_PATH did not make sense since
    this is mostly about getting a remote file name.
    
    Closes #15285

    Changed files

    • lib/vssh/curl_path.c
    • lib/vssh/curl_path.h
    • lib/vssh/libssh2.c
    • lib/vssh/ssh.h
  2. Change #211837

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 16 Oct 2024 11:55:52
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision facf59c30e9a6a10c4f2acb26b62f944919deffe

    Comments

    libssh2: use the filename buffer when getting the homedir
    Avoids having to use a big stack buffer for this.
    
    Closes #15285

    Changed files

    • lib/vssh/libssh2.c
  3. Change #211839

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 16 Oct 2024 12:09:02
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7fbcf4b9b74ffe7656941ca7721401834c4c8113

    Comments

    vquic: fix compiler warning with gcc + MUSL
    ```
    /Users/runner/work/curl-for-win/curl-for-win/curl/lib/vquic/vquic.c: In function 'msghdr_get_udp_gro':
    /Users/runner/work/curl-for-win/curl-for-win/curl/lib/vquic/vquic.c:344: warning: ignoring #pragma clang diagnostic [-Wunknown-pragmas]
      344 | #pragma clang diagnostic push
          |
    /Users/runner/work/curl-for-win/curl-for-win/curl/lib/vquic/vquic.c:345: warning: ignoring #pragma clang diagnostic [-Wunknown-pragmas]
      345 | #pragma clang diagnostic ignored "-Wsign-compare"
          |
    /Users/runner/work/curl-for-win/curl-for-win/curl/lib/vquic/vquic.c:346: warning: ignoring #pragma clang diagnostic [-Wunknown-pragmas]
      346 | #pragma clang diagnostic ignored "-Wcast-align"
          |
    /Users/runner/work/curl-for-win/curl-for-win/curl/lib/vquic/vquic.c:350: warning: ignoring #pragma clang diagnostic [-Wunknown-pragmas]
      350 | #pragma clang diagnostic pop
          |
    ```
    https://github.com/curl/curl-for-win/actions/runs/11356281008/job/31587180874#step:3:9534
    
    Follow-up to a571afc02e11c1ab9a9f59c2150e11acca423fcc #14012
    Closes #15303

    Changed files

    • lib/vquic/vquic.c