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

Builder curl-ares-solaris10-sparc Build #3503

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisione8c64a06c5031bd59fdf914e8ac6c8524c0e4375
Got Revisione8c64a06c5031bd59fdf914e8ac6c8524c0e4375
Changes7 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 24 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 19 mins, 20 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 secs )
    1. stdio

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartSun Mar 22 22:01:02 2026
EndMon Mar 23 10:23:48 2026
Elapsed12 hrs, 22 mins, 46 secs

All Changes:

:

  1. Change #261977

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sun 22 Mar 2026 11:55:39
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 6393103b993fa7007ea31808892e20bb574122b8

    Comments

    lib: make SMB support opt-in
    The SMB protocol has weak security and is rarely used these days.
    
    Note that SMB also requires NTLM enabled.
    
    Closes #20846

    Changed files

    • .github/workflows/windows.yml
    • CMakeLists.txt
    • configure.ac
    • docs/CURL-DISABLE.md
    • docs/DEPRECATE.md
    • docs/INSTALL-CMAKE.md
    • lib/curl_config-cmake.h.in
    • lib/curl_setup.h
    • lib/protocol.c
    • lib/smb.c
    • lib/smb.h
    • lib/version.c
  2. Change #261978

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sun 22 Mar 2026 12:02:49
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d3ae2e0565eb8592b7d75e342596205321dc6cf5

    Comments

    RELEASE-NOTES: synced

    Changed files

    • RELEASE-NOTES
  3. Change #261982

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 22 Mar 2026 13:33:34
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision fcec44df00a650199ccc27e3bc80e0e6b50474a2

    Comments

    FAQ.md: point archive.org link to the original, no-JS, revision [ci skip]
    To make it pass mdlinkcheck, open faster, w/o cookie banner, and not
    need special URL format to make JS happy.
    
    Ref: 1dc0ce956226186f40fdda072e7bd6c0cc035597

    Changed files

    • docs/FAQ.md
  4. Change #262000

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sun 22 Mar 2026 18:04:08
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e9eddedf38078ac92c0028431271cebbc895686e

    Comments

    Revert "md5/md4: enable unaligned access fast path on powerpc64"
    This reverts commit 21fc17b265ca32c8a5a768dc7cd730754a104740.
    
    That was not properly thought through. PowerPC can run in either endian
    and the preprocessor does not know which.
    
    Ref: #20985
    Closes #21058

    Changed files

    • lib/md4.c
    • lib/md5.c
  5. Change #262001

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sun 22 Mar 2026 18:06:32
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 57a94fec477a3fd4518081d9bf6fd3df1164f6b0

    Comments

    multi.h: add CURLMNWC_CLEAR_ALL
    The two bitmask constants for *CLEAR_DNS and *CLEAR_CONNS were
    duplicates (both set to 1), so they cannot be distinguished and both
    actions fire.
    
    This shipped in public releases since 8.16.0 to and include 8.19.0.
    
    This fix adds CURLMNWC_CLEAR_ALL to be the new 1, and it now implies all
    bits. The DNS and CONNS defines get two new bits (2, 4).
    
    Follow-up to 55c045c86338bfcc1de676c496f
    
    Found by Codex Security
    Closes #20968

    Changed files

    • docs/libcurl/opts/CURLMOPT_NETWORK_CHANGED.md
    • docs/libcurl/symbols-in-versions
    • include/curl/multi.h
    • lib/multi.c
  6. Change #262006

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 22 Mar 2026 19:15:56
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 757fd6aae90265e4e1021a8f82d086186e303bb7

    Comments

    gnutls: fix clang-tidy warning with !verbose
    with
    `-DCURL_DISABLE_VERBOSE_STRINGS=ON -DCURL_USE_GNUTLS=ON -DCURL_CLANG_TIDY=ON`.
    
    ```
    lib/vtls/gtls.c:268:7: error: Value stored to 'strerr' is never read [clang-analyzer-deadcode.DeadStores,-warnings-as-errors]
      268 |       strerr = gnutls_strerror(rc);
          |       ^        ~~~~~~~~~~~~~~~~~~~
    ```
    
    Closes #21060

    Changed files

    • lib/vtls/gtls.c
  7. Change #262007

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 22 Mar 2026 19:15:56
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e8c64a06c5031bd59fdf914e8ac6c8524c0e4375

    Comments

    asyn-thrdd: fix clang-tidy unused value warning
    with `-DCURL_DISABLE_SOCKETPAIR=ON`.
    
    ```
    lib/asyn-thrdd.c:227:5: error: Value stored to 'do_abort' is never read [clang-analyzer-deadcode.DeadStores,-warnings-as-errors]
      227 |     do_abort = addr_ctx->do_abort;
          |     ^          ~~~~~~~~~~~~~~~~~~
    ```
    
    Closes #21061

    Changed files

    • lib/asyn-thrdd.c