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

Builder curl-unthreaded-solaris11-i386 Build #5049

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision8f71d0fde515aa4c68002477356c35bd79927729
Got Revision8f71d0fde515aa4c68002477356c35bd79927729
Changes2 changes

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Stefan Eissing

Timing:

StartTue May 12 16:57:25 2026
EndTue May 12 19:22:06 2026
Elapsed2 hrs, 24 mins, 41 secs

All Changes:

:

  1. Change #266867

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 12 May 2026 14:53:48
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a32a2b0b77c190981e1198c6b89b92430e231c37

    Comments

    GHA: (re-)enable SMB in a few builds
    Closes #21564

    Changed files

    • .github/workflows/linux.yml
  2. Change #266873

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Tue 12 May 2026 16:05:15
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8f71d0fde515aa4c68002477356c35bd79927729

    Comments

    creds: hold credentials
    Authorizdation credentials are kept in `struct Curl_creds`. This contains:
    
    * `user`: the username, maybe the empty string
    * `passwd`: the password, maybe the empty string
    * `sasl_authzid`: the SASL authz value, maybe the empty string
    * `oauth_bearer`: the OAUTH bearer token, maybe the empty string
    * `source`: where the credentials from from
    * `refcount`: a reference counter to link/unkink creds
    
    A `creds` with all values empty is equivalent to NULL, e.g. no `creds`
    instance. With reference counting, `creds` can be linked/unlinked
    in several places.
    
    See docs/internals/CREDENTIALS.md for use.
    
    Closes #21548

    Changed files

    • docs/Makefile.am
    • docs/internals/CREDENTIALS.md
    • lib/Makefile.inc
    • lib/connect.c
    • lib/creds.c
    • lib/creds.h
    • lib/curl_sasl.c
    • lib/ftp.c
    • lib/http.c
    • lib/http_aws_sigv4.c
    • lib/http_digest.c
    • lib/http_negotiate.c
    • lib/http_ntlm.c
    • lib/imap.c
    • lib/ldap.c
    • lib/mqtt.c
    • lib/netrc.c
    • lib/netrc.h
    • lib/openldap.c
    • lib/pop3.c
    • lib/rtsp.c
    • lib/smb.c
    • lib/socks.c
    • lib/socks.h
    • lib/telnet.c
    • lib/transfer.c
    • lib/transfer.h
    • lib/url.c
    • lib/urldata.h
    • lib/vauth/cleartext.c
    • lib/vauth/cram.c
    • lib/vauth/digest.c
    • lib/vauth/digest_sspi.c
    • lib/vauth/gsasl.c
    • lib/vauth/krb5_gssapi.c
    • lib/vauth/krb5_sspi.c
    • lib/vauth/ntlm.c
    • lib/vauth/ntlm_sspi.c
    • lib/vauth/oauth2.c
    • lib/vauth/spnego_gssapi.c
    • lib/vauth/spnego_sspi.c
    • lib/vauth/vauth.c
    • lib/vauth/vauth.h
    • lib/vssh/libssh.c
    • lib/vssh/libssh2.c
    • tests/libtest/lib1978.c
    • tests/unit/unit1304.c