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

Builder curl-unthreaded-solaris11-sparc Build #4495

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision1966c86d71eb90beeeb3ccbefd6321bd64992553
Got Revision1966c86d71eb90beeeb3ccbefd6321bd64992553
Changes1 change

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 8 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 28 mins, 18 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 4495 Build
codebase Build
got_revision 1966c86d71eb90beeeb3ccbefd6321bd64992553 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 1966c86d71eb90beeeb3ccbefd6321bd64992553 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:

StartTue Oct 21 14:48:05 2025
EndTue Oct 21 15:45:01 2025
Elapsed56 mins, 56 secs

All Changes:

:

  1. Change #246327

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 21 Oct 2025 14:37:40
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 1966c86d71eb90beeeb3ccbefd6321bd64992553

    Comments

    cmake: add and use local FindGnuTLS module
    Replacing a combination of custom logic in the main script and relying
    on CMake's built-in Find module, with code and behavior used for
    the rest of dependencies.
    
    Also to:
    - add version detection in the non-pkg-config path.
    - make `GNUTLS_INCLUDE_DIR` and `GNUTLS_LIBRARY` take precedence over
      pkg-config. As with other dependencies.
    - document the above two configuration options.
    - prepare for #16973, which originally introduced this local Find
      module.
    
    The local module is doing largely the same as CMake's built-in
    FindGnuTLS. Differences:
    - honors `CURL_USE_PKGCONFIG`.
    - returns GnuTLS version for non-pkg-config detection.
    - consistently returns `GNUTLS_VERSION`.
      (CMake's built-in uses s different name in <3.16.)
    - CMake 3.16+ returns an imported target. curl supports 3.7,
      therefore we may only use it conditionally, which isn't worth it.
    
    Cherry-picked from #16973
    
    Closes #19163

    Changed files

    • CMake/FindGnuTLS.cmake
    • CMakeLists.txt
    • Makefile.am
    • docs/INSTALL-CMAKE.md