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

Builder curl-ares-solaris11-sparc Build #4074

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 4 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 25 mins, 47 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-ares-solaris11-sparc slave
buildername curl-ares-solaris11-sparc Builder
buildnumber 4074 Build
codebase Build
got_revision 548873921cde197aa1d40216c594c76738031374 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 548873921cde197aa1d40216c594c76738031374 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. Viktor Szakats

Timing:

StartThu Jun 19 13:14:48 2025
EndThu Jun 19 14:33:49 2025
Elapsed1 hrs, 19 mins, 0 secs

All Changes:

:

  1. Change #236995

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 19 Jun 2025 12:14:55
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 69642330a3673364ba873fc1aabab5e85fa8da79

    Comments

    cmake: sync `target_link_libraries()` order in tests more
    Closes #17669

    Changed files

    • tests/client/CMakeLists.txt
    • tests/libtest/CMakeLists.txt
    • tests/server/CMakeLists.txt
  2. Change #237001

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 19 Jun 2025 13:02:37
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 548873921cde197aa1d40216c594c76738031374

    Comments

    cmake: use `target_link_options()` when available
    To pass `-municode` to the linker. Before this patch we passed this via
    `target_link_libraries()` which is designed to pass libraries. Keep
    using it for old CMake versions, where no better alternative existed.
    
    https://cmake.org/cmake/help/latest/command/target_link_options.html
    
    Also:
    - also pass `-municode` as `PRIVATE` for old cmake versions.
      (it should not make a difference because no target depends on the curl
      tool, but this seem to be the modern, non-ambiguous syntax.)
    - unfold a bunch of split lines for greppability of `add_library()` and
      `add_executable()` commands.
    - quote a string.
    
    Closes #17670

    Changed files

    • lib/CMakeLists.txt
    • src/CMakeLists.txt