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

Builder curl-unthreaded-solaris11-i386 Build #3616

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision9fc05357ef91e9d5a3c6662a30a67c96cac0b2e5
Got Revision9fc05357ef91e9d5a3c6662a30a67c96cac0b2e5
Changes3 changes

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 3 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 1 hrs, 5 mins, 30 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 46 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 3616 Build
codebase Build
got_revision 9fc05357ef91e9d5a3c6662a30a67c96cac0b2e5 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 9fc05357ef91e9d5a3c6662a30a67c96cac0b2e5 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. Viktor Szakats

Timing:

StartThu Jun 19 15:45:47 2025
EndThu Jun 19 19:21:26 2025
Elapsed3 hrs, 35 mins, 39 secs

All Changes:

:

  1. 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
  2. Change #237007

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 19 Jun 2025 13:27:17
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8e47c8a764282605e54328853f55a4c8d323f2b1

    Comments

    build: tidy up header paths, use srcdir where possible
    To improve readability.
    
    Also add more comments on why each is necessary.
    
    Closes #17630

    Changed files

    • lib/Makefile.am
    • src/CMakeLists.txt
    • src/Makefile.am
    • tests/client/CMakeLists.txt
    • tests/client/Makefile.am
    • tests/libtest/CMakeLists.txt
    • tests/libtest/Makefile.am
    • tests/server/CMakeLists.txt
    • tests/server/Makefile.am
    • tests/tunit/CMakeLists.txt
    • tests/tunit/Makefile.am
    • tests/unit/CMakeLists.txt
    • tests/unit/Makefile.am
  3. Change #237008

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 19 Jun 2025 13:28:45
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9fc05357ef91e9d5a3c6662a30a67c96cac0b2e5

    Comments

    tests/server: make all global vars/funcs static
    Also merge `util.h` into `util.c`.
    
    Closes #17671

    Changed files

    • tests/server/Makefile.inc
    • tests/server/dnsd.c
    • tests/server/getpart.c
    • tests/server/getpart.h
    • tests/server/mqttd.c
    • tests/server/resolve.c
    • tests/server/rtspd.c
    • tests/server/sockfilt.c
    • tests/server/socksd.c
    • tests/server/sws.c
    • tests/server/tftpd.c
    • tests/server/util.c
    • tests/server/util.h