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

Builder curl-threaded-solaris11-sparc Build #2985

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

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

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-threaded-solaris11-sparc slave
buildername curl-threaded-solaris11-sparc Builder
buildnumber 2985 Build
codebase Build
got_revision 86d5c2651d3ea8af316eff2a2452ae61413c66ba Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 86d5c2651d3ea8af316eff2a2452ae61413c66ba Build
scheduler schedule-curl-threaded-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-threaded-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartMon Oct 7 12:40:33 2024
EndMon Oct 7 13:12:34 2024
Elapsed32 mins, 1 secs

All Changes:

:

  1. Change #210774

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 07 Oct 2024 12:31:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 1d960672246adf5bcb13c72a1806afa6c7d54c93

    Comments

    build: add `ldap` to `libcurl.pc` `Requires:`
    Closes #15163

    Changed files

    • CMakeLists.txt
    • acinclude.m4
  2. Change #210776

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 07 Oct 2024 12:31:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a71bc67f2c88ef5dafd9c7428cadc6f0e41dfa2f

    Comments

    GHA/macos: comment spelling and clarity
    Closes #15166

    Changed files

    • .github/workflows/macos.yml
  3. Change #210777

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 07 Oct 2024 12:31:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 948a2b24f9ba022dfe819ad0ba68077a6d06b656

    Comments

    ech: spelling, whitespace, say `--ech` default config
    Closes #15167

    Changed files

    • docs/ECH.md
    • docs/cmdline-opts/ech.md
  4. Change #210778

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 07 Oct 2024 12:31:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 5e70566094463b8463d4dc1bec9b66763a761c76

    Comments

    build: detect and use `_setmode()` with Cygwin/MSYS, also use on Windows
    Before this patch `setmode()` was not detected with Cygwin/MSYS, because
    it's a macro, not a function, and detection is looking for a function.
    
    Switching to symbol detection doesn't work because it mis-detects it on
    BSD systems which features a function with the same name but different
    functionality and arguments.
    
    Fix it by looking for a `_setmode()` function on Cygwin/MSYS, and use it
    if available.
    
    `_setmode()` is recommended over `setmode()` by Windows documentation so
    use that on Windows too. It seems to be available on all supported
    compilers, so omit detection.
    
    https://learn.microsoft.com/cpp/c-runtime-library/reference/posix-setmode
    https://learn.microsoft.com/cpp/c-runtime-library/reference/setmode
    
    Officially Windows requires argument `_O_BINARY` with an underscore.
    `O_BINARY` is also supported but bound to conditions. Continue to use it
    for simplicity. Cygwin supports `O_BINARY` (no underscore).
    
    Closes #15169

    Changed files

    • CMake/Platforms/WindowsCache.cmake
    • CMakeLists.txt
    • acinclude.m4
    • configure.ac
    • lib/config-win32.h
    • lib/curl_config.h.cmake
    • src/tool_binmode.c
    • src/tool_binmode.h
  5. Change #210779

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 07 Oct 2024 12:31:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2d1959dd0c504a1e4418f687b714357142b0b21b

    Comments

    configure: drop duplicate feature checks for `poll()`, `if_nametoindex()`
    Before this patch they were detected via manual methods, then with
    `AC_CHECK_FUNCS()`.
    
    Delete the manual checks and keep the latter.
    
    Also delete `CURL_INCLUDES_POLL()` which is no longer used after
    the above.
    
    Closes #15170

    Changed files

    • configure.ac
    • m4/curl-functions.m4
  6. Change #210780

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 07 Oct 2024 12:31:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 6cfb615e922eb7c1d4cb6104d701c44802c8ed10

    Comments

    sws: fix unused static function with `TCP_NODELAY` undefined
    Closes #15171

    Changed files

    • tests/server/sws.c
  7. Change #210781

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 07 Oct 2024 12:31:37
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 86d5c2651d3ea8af316eff2a2452ae61413c66ba

    Comments

    configure: drop unused bare `socket.h` detection
    Added in 37eba37019388f767f5de67b4071641044d7b026 (2009-06-17) to help
    detecting socket functions.
    
    But, this `socket.h` isn't used in the source code since
    90dd1fc66401d5bb7814f4edeb16a06c925b1f1e #8288 (2022-01-16).
    
    Closes #15173

    Changed files

    • configure.ac
    • m4/curl-functions.m4