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

Builder curl-ares-solaris11-sparc Build #4258

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Stefan Eissing
  2. Viktor Szakats

Timing:

StartMon Jul 28 12:34:38 2025
EndMon Jul 28 14:06:25 2025
Elapsed1 hrs, 31 mins, 47 secs

All Changes:

:

  1. Change #240951

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 28 Jul 2025 11:18:07
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8e1d817cb36bca2ed08296c363d89b75c7779dc8

    Comments

    build: fix disable-verbose
    Fix compile error when building with `--disable-verbose`.
    
    Adjust pytest to skip when curl is not a debug build but needs
    traces.
    
    Follow-up to b453a447ce4e6aa2a352b196
    
    Closes #18053

    Changed files

    • lib/connect.c
    • lib/curl_trc.c
    • lib/http2.c
    • lib/multi.c
    • tests/http/test_02_download.py
    • tests/http/test_10_proxy.py
    • tests/http/test_13_proxy_auth.py
    • tests/http/test_15_tracing.py
    • tests/http/test_17_ssl_use.py
    • tests/http/test_30_vsftpd.py
    • tests/http/test_31_vsftpds.py
    • tests/http/test_32_ftps_vsftpd.py
  2. Change #240958

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 28 Jul 2025 11:28:15
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 58b9c6134bf8632442aa7d703aa8c7061604785e

    Comments

    cmake: omit linking duplicate/unnecessary libs to tests & examples
    Before this patch we explicitly linked the full list of libcurl
    dependency libs to tests and examples via `CURL_LIBS`. This was
    redundant, because test and example code do not directly use these
    dependency libs and for indirect use they are implicitly passed
    via libcurl as needed. After this patch, tests and examples only link
    explicitly to system libs (e.g. socket).
    
    Also bringing it closer to how `./configure` does this.
    
    Borrow the variable name `CURL_NETWORK_AND_TIME_LIBS` from
    `./configure`. However, its content is not exactly the same. With cmake
    it also holds `pthread`, but doesn't hold AmiSSL.
    
    Closes #17696

    Changed files

    • CMakeLists.txt
    • docs/examples/CMakeLists.txt
    • tests/client/CMakeLists.txt
    • tests/libtest/CMakeLists.txt
    • tests/server/CMakeLists.txt