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

Builder curl-threaded-solaris11-i386 Build #3919

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisiondbff3eec456d86386be4cebb89cbe4dfc21a06b6
Got Revisiondbff3eec456d86386be4cebb89cbe4dfc21a06b6
Changes5 changes

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 2 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 54 mins, 35 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-i386 slave
buildername curl-threaded-solaris11-i386 Builder
buildnumber 3919 Build
codebase Build
got_revision dbff3eec456d86386be4cebb89cbe4dfc21a06b6 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision dbff3eec456d86386be4cebb89cbe4dfc21a06b6 Build
scheduler schedule-curl-threaded-solaris11-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-threaded-solaris11-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Stefan Eissing
  2. Viktor Szakats

Timing:

StartMon Oct 20 16:55:08 2025
EndMon Oct 20 19:48:08 2025
Elapsed2 hrs, 53 mins, 0 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
  4. Change #246259

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 20 Oct 2025 14:48:20
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4be9db7bc8c7b604e9288f7deaec48f61bbc61e0

    Comments

    http: accept duplicate location with same value
    When a server sends a Location: header repeat with the same location,
    ignore the repeats silently.
    
    Follow-up to 9596c4a2587a9e512ea46f
    Closes #19159

    Changed files

    • lib/http.c
  5. Change #246262

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 20 Oct 2025 15:21:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision dbff3eec456d86386be4cebb89cbe4dfc21a06b6

    Comments

    cf-socket: give information when unable to open socket
    Give ERRNO explanation in a failf() when unable to open a socket.
    Helps in finding out what the issue preventing your curl to work
    really is. Just had a wrong ulimit after a sys update.
    
    Closes #19158

    Changed files

    • lib/cf-socket.c