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

Builder curl-unthreaded-solaris11-i386 Build #4677

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 13 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 51 mins, 54 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-i386 slave
buildername curl-unthreaded-solaris11-i386 Builder
buildnumber 4677 Build
codebase Build
got_revision b56e103d4d223a722a00cd76846cbbff191f7d90 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision b56e103d4d223a722a00cd76846cbbff191f7d90 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 Feb 26 02:21:56 2026
EndThu Feb 26 05:29:41 2026
Elapsed3 hrs, 7 mins, 45 secs

All Changes:

:

  1. Change #258958

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 25 Feb 2026 22:57:02
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision aae361242f30eafacf46085ed731b1524bfd3be9

    Comments

    cmake: replace internal option with a new `testbins` target
    To allow building test binaries without test certs, replacing
    `_CURL_SKIP_BUILD_CERTS` internal option with a build target that is
    similar to `testdeps`, but without building the test certificates.
    
    To make building test binaries a little bit faster, with less noisy
    output, and without having to reconfigure the build.
    
    Closes #20708

    Changed files

    • docs/INSTALL-CMAKE.md
    • tests/CMakeLists.txt
    • tests/certs/CMakeLists.txt
    • tests/libtest/CMakeLists.txt
    • tests/server/CMakeLists.txt
    • tests/tunit/CMakeLists.txt
    • tests/unit/CMakeLists.txt
  2. Change #258966

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 26 Feb 2026 01:36:16
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision b56e103d4d223a722a00cd76846cbbff191f7d90

    Comments

    build: do not include wolfSSL header in `curl_setup.h`
    To fix building tests/server with cmake and both wolfSSL and OpenSSL
    enabled (MultiSSL).
    
    tests/server do not have libcurl dependency header paths setup because
    it does not use libcurl. The code however includes `curl_setup.h`, which
    tried including `wolfssl/version.h` before this patch to verify if the
    wolfSSL coexist feature is available. Without a header path, it failed:
    ```
    In file included from bld/tests/server/servers.c:3:
    In file included from tests/server/first.h:40:
    lib/curl_setup.h:737:12: fatal error: 'wolfssl/version.h' file not found
      737 | #  include <wolfssl/version.h>
          |            ^~~~~~~~~~~~~~~~~~~
    1 error generated.
    ```
    Ref: https://github.com/curl/curl/actions/runs/22410066319/job/64880787424#step:46:76
    
    Fix by moving the include and version check to `vtls/wolfssl.c`.
    
    Also: add an early version check to cmake.
    
    Follow-up to 16f073ef49f94412000218c9f6ad04e3fd7e4d01 #16973
    Cherry-picked from #20720
    
    Closes #20726

    Changed files

    • CMakeLists.txt
    • lib/curl_setup.h
    • lib/vtls/wolfssl.c