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

Builder curl-unthreaded-solaris11-sparc Build #6199

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 14 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 24 mins, 34 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 6199 Build
codebase Build
got_revision 5ef4e1cabca04ed60159597e8d32d7349195648b Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 5ef4e1cabca04ed60159597e8d32d7349195648b 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:

StartMon Aug 10 16:45:10 2026
EndMon Aug 10 17:38:23 2026
Elapsed53 mins, 12 secs

All Changes:

:

  1. Change #277688

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 10 Aug 2026 18:14:09
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 5050196dcc74b8369bcfad35d3b0926d0ff96180

    Comments

    build: require `!NDEBUG` for debug-enabled (aka development) builds
    To prevent creating a curl-development (aka debug-enabled, aka
    `-DENABLE_DEBUG=ON`, `--enable-debug` or `DEBUGBUILD`) build without
    `assert()`s. Since it may break expectations by missing to catch error
    cases. Also to make it less likely to build an inherently insecure
    development build by accident.
    
    - in CMake, for non-Multi-Config builds, show this error unless Debug
      configuration is set at configure-time:
      ```
      CMake Error at CMakeLists.txt:263 (message):
        Debug-enabled (aka development mode) curl requires the Debug configuration
      ```
      Ref: https://github.com/curl/curl/actions/runs/31159065911/job/92805128331?pr=22513#step:6:56
      The other 3 predefined configs (`Release`, `RelWithDebInfo`,
      `MinSizeRel`) set `NDEBUG` automatically.
    
    - or this message in other cases, e.g. when using CMake Multi-Config
      with non-Debug, e.g. `--config Release`, or passed `NDEBUG` manually
      with either build tools:
      ```
      curl_setup.h(1062): fatal error C1189: #error:
        "Debug-enabled builds cannot be combined with NDEBUG"
      ```
      Ref: https://github.com/curl/curl/actions/runs/31159628749/job/92807878479#step:9:28
    
    Also:
    - INSTALL-CMAKE.md: document.
    - GHA/windows: adjust CI jobs to meet the above requirement, where
      missing.
    
    Reported-by Stefan Eissing
    Bug: https://github.com/curl/curl/pull/22484#discussion_r3730045572
    Ref: ea984456804ab3ff1656a668fabdf734a32e379e #13592
    Fixes #22481
    Fixes #22484
    
    Closes #22513

    Changed files

    • .github/workflows/windows.yml
    • CMakeLists.txt
    • docs/INSTALL-CMAKE.md
    • lib/curl_setup.h
  2. Change #277689

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 10 Aug 2026 18:14:14
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 5ef4e1cabca04ed60159597e8d32d7349195648b

    Comments

    checksrc: check for `assert`, replace in tests where missing, drop from examples
    Follow-up to 791b6883edc1c02c4b253e8b47237ec13ac66d06 #22521
    
    Closes #22527

    Changed files

    • docs/examples/sslbackend.c
    • docs/internals/CODE_STYLE.md
    • scripts/checksrc.pl
    • tests/libtest/cli_h2_pausing.c
    • tests/libtest/cli_hx_download.c
    • tests/libtest/lib2700.c
    • tests/libtest/lib530.c
    • tests/libtest/lib582.c
    • tests/libtest/lib583.c