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

Builder curl-unthreaded-solaris11-sparc Build #4490

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartMon Oct 20 14:52:55 2025
EndMon Oct 20 16:17:48 2025
Elapsed1 hrs, 24 mins, 52 secs

All Changes:

:

  1. Change #246242

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 20 Oct 2025 13:52:58
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a041bf6ca2339ad273a8057aa3bc6605c6706fc5

    Comments

    Makefile.example: make default options more likely to work
    - replace default libpaths with more common ones.
    - drop Solaris network libs.
    
    Closes #19161

    Changed files

    • docs/examples/Makefile.example
  2. Change #246246

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 20 Oct 2025 14:22:14
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ccec2fae1bb4a41c5215b59dfdd90583bc19a572

    Comments

    GHA/curl-for-win: drop libssh
    Switch back to default libssh2.
    
    The distribution server has reliability issues (this time it works
    locally though):
    ```
    ++ curl [...] --output pkg.bin https://www.libssh.org/files/0.11/libssh-0.11.3.tar.xz --output pkg.sig https://www.libssh.org/files/0.11/libssh-0.11.3.tar.xz.asc
    curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2) [4x]
    ```
    Ref: https://github.com/curl/curl/actions/runs/18651134321/job/53169147048#step:3:2391
    
    There is also no official mirror that I know of.
    
    Ref: af8e1aa4b06e9dc78a559b485348e5464bd5cff5 #18257
    
    Closes #19162

    Changed files

    • .github/workflows/curl-for-win.yml
  3. Change #246247

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 20 Oct 2025 14:23:46
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e7818999dbeff5acb00c032860d2259a1c5f9c5b

    Comments

    socks_gssapi: replace `gss_release_buffer()` with curl free for buffers owned by libcurl
    Before this patch, this code used to call `gss_release_buffer()` on
    objects with buffers allocated via curl's allocator.
    `gss_release_buffer()` calls system (or Win32) free on these buffers,
    which may mismatch with curl's allocator. To fix it, align these calls
    with the pattern used in vauth modules, by replacing
    `gss_release_buffer()` with curl free to release the buffers.
    
    Use `Curl_safefree()` to set the freed pointer to NULL, as
    `gss_release_buffer()` did.
    
    Also: use object length var when allocating.
    
    Reported-by: Joshua Rogers
    
    Closes #19018

    Changed files

    • lib/socks_gssapi.c