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

Builder curl-unthreaded-solaris10-i386 Build #16366

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision97f518e19342d60468c2e8b1b3ce735d4f132652
Got Revision97f518e19342d60468c2e8b1b3ce735d4f132652
Changes4 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 3 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 4 hrs, 59 mins, 29 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-solaris10-i386 slave
buildername curl-unthreaded-solaris10-i386 Builder
buildnumber 16366 Build
codebase Build
got_revision 97f518e19342d60468c2e8b1b3ce735d4f132652 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 97f518e19342d60468c2e8b1b3ce735d4f132652 Build
scheduler schedule-curl-unthreaded-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Joshua Vandaƫle
  2. Viktor Szakats
  3. renovate[bot]

Timing:

StartSat Jan 10 08:00:08 2026
EndSat Jan 10 23:01:09 2026
Elapsed15 hrs, 1 mins, 1 secs

All Changes:

:

  1. Change #254655

    Category curl
    Changed by renovate[bot] <29139614+renovate[bot]ohnoyoudont@users.noreply.github.com>
    Changed at Fri 09 Jan 2026 17:05:15
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 1dedcbc35d63c39ea75d41bffd89df35b1f54df8

    Comments

    GHA: update dependency cloudflare/quiche to v0.24.7
    Closes #20224

    Changed files

    • .github/workflows/http3-linux.yml
  2. Change #254656

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 09 Jan 2026 17:05:16
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 91c24d3e10399f245c35b49dcd703182cc309973

    Comments

    cmake: silence useless compiler warnings triggered by the FASTBuild generator
    Silencing all of these:
    ```
    11>/tmp/_fbuild.tmp/0x0752c383/core_2/70816E19/krb5_sspi.c:1:5: error: this style of line directive is a GNU extension [-Werror,-Wgnu-line-marker]
        1 | # 1 "<built-in>"
          |     ^
    /path/to/curl/lib/vauth/krb5_sspi.c:29:6: error: this style of line directive is a GNU extension [-Werror,-Wgnu-line-marker]
       29 | # 26 "/path/to/curl/lib/vauth/krb5_sspi.c"
          |      ^
    [...]
    ```
    
    FASTBuild is slightly faster than Ninja in basic (single-machine, build
    from scratch) cases (and can be more faster in other build cases). It
    doesn't support unity builds. Maybe it can bring slightly better
    performance to non-unity cmake CI jobs, in jobs having an 'install
    prereq' phase already, and installing the fastbuild package being faster
    than this gain. It overall seems marginal if any in curl CI. At least
    for now. But it doesn't hurt if it works, and may be useful for some.
    
    Requires CMake 4.2+.
    
    That said this workaround may have a better place within CMake.
    
    Refs:
    https://www.kitware.com/cmake-fastbuild-distributed-cached-and-fast/
    https://cmake.org/cmake/help/latest/generator/FASTBuild.html
    https://github.com/fastbuild/fastbuild
    https://fastbuild.org/docs/home.html
    
    Closes #20230

    Changed files

    • CMake/PickyWarnings.cmake
  3. Change #254678

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 09 Jan 2026 19:35:16
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2b0d8dcc16c531d3154ab54347a3eaabf9bd2c7d

    Comments

    GHA: switch 12 Linux jobs to arm64
    More cost-effective and seems as fast or faster than Intel.
    
    In particular, valgrind seems to be almost 2x fast. So fast the job pair
    could fit under 10 minutes if merged again (but would be the longest in
    GHA/Linux.)
    
    Installing packages is slightly slower. The package repo is Ubuntu's
    which is slower than the Azure mirror used on Intel (unless Azure is
    broken, which happened a lot last year).
    
    To add to more jobs, the locally built deps also need to be migrated.
    
    Also:
    - add workaround for failing sshd server on Linux arm runners, caused by
      world-writable `HOME` directory.
    
    Closes #20231

    Changed files

    • .github/workflows/appveyor-status.yml
    • .github/workflows/checkdocs.yml
    • .github/workflows/checksrc.yml
    • .github/workflows/checkurls.yml
    • .github/workflows/linux.yml
  4. Change #254682

    Category curl
    Changed by Joshua Vandaƫle <joshuaohnoyoudont@vandaele.software>
    Changed at Fri 09 Jan 2026 22:03:28
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 97f518e19342d60468c2e8b1b3ce735d4f132652

    Comments

    cmake: reference OpenSSL and ZLIB imported targets only when enabled
    This otherwise broke building on a parent with a static library which is
    available but disabled (e.g. CURL_ZLIB is set to OFF but ZLIB::ZLIB
    exists)
    
    Closes #20217

    Changed files

    • CMakeLists.txt