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

Builder curl-unthreaded-solaris10-sparc Build #14085

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision8eb978b9c212068371c39b37be1522904a790811
Got Revision8eb978b9c212068371c39b37be1522904a790811
Changes6 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 1 mins, 17 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 6 hrs, 45 mins, 53 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 mins, 27 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/curl-unthreaded-solaris10-sparc slave
buildername curl-unthreaded-solaris10-sparc Builder
buildnumber 14085 Build
codebase Build
got_revision 8eb978b9c212068371c39b37be1522904a790811 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 8eb978b9c212068371c39b37be1522904a790811 Build
scheduler schedule-curl-unthreaded-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/curl-unthreaded-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartSun Aug 16 16:38:42 2026
EndMon Aug 17 07:24:21 2026
Elapsed14 hrs, 45 mins, 38 secs

All Changes:

:

  1. Change #278346

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 16 Aug 2026 10:08:33
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 1db93bdb7c1943132b13543539aaaf4866f31419

    Comments

    config-win32.h: limit use to MSVC IDE Project builds
    This is the only purpose it's maintained for.
    
    Drop mingw-w64 and other logic falling outside of VS2010-2013 needs.
    
    mingw-w64/MSVC platform differences keep being maintained/documented as
    part of the CMake pre-fill logic in `CMake/win32-cache.cmake`.
    
    Follow-up to ba8752e5566076acc8bdec7ae4ec78901f7050f4 #12224
    
    Closes #22595

    Changed files

    • lib/config-win32.h
  2. Change #278347

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 16 Aug 2026 10:08:33
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision bf594226d66dc2bbf62a18f3dea1ceabe5b26dcf

    Comments

    GHA/non-native: BSD build improvements
    - show binary sizes and file types in 'curl -V' step, like rest of
      workflows.
    - make `build tests` step verbose.
    - disable typecheck on emulated CPUs.
      It results in 3-4x speed-up for riscv64, and ~2x for ARM64 when
      building tests (in particular the libtests binary.)
      Ref: 9e6f1c5efb7a70e1f33e467a738f3e3f652f3174 #19637
    - enable building tests in an ARM64 job.
    - move examples build test from ARM64 to riscv64 (to spread job times).
    
    Closes #22601

    Changed files

    • .github/workflows/non-native.yml
  3. Change #278350

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 16 Aug 2026 12:15:54
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e090cf59ad4c88be9da873fe37dae3487b7ad77e

    Comments

    build: drop `dirent.h` and `opendir()` detections on Windows
    `opendir()` was used previously with mingw-w64 for `file://` directory
    listing support. This was replaced by a native Win32 solution on all
    Windows platforms, leaving `opendir()` no longer used. Drop related
    feature detections.
    
    Follow-up to c7c42afab91c46e6baaa0e2801626e13acd6c30a #22577
    
    Closes #22588

    Changed files

    • CMake/win32-cache.cmake
    • CMakeLists.txt
    • configure.ac
  4. Change #278352

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 16 Aug 2026 12:16:57
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 5b9946a106df6d923b3dbe37ebf632f756afa0d1

    Comments

    curl_threads: always use native threads/mutex on Windows
    Syncing with build systems, which already enforce this.
    
    Closes #22593

    Changed files

    • lib/curl_threads.c
    • lib/curl_threads.h
  5. Change #278354

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 16 Aug 2026 12:34:35
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4b42956cd1b4ee5c739d9bd73662d21c6b13cae8

    Comments

    build: drop detecting `gettimeofday()` on Windows
    To remove a build difference between mingw-w64 and MSVC builds (where
    mingw-w64 has it, while MSVC does not). Also to simplify and save the
    cost of detection/verification in CI.
    
    `gettimeofday()` was used in `curl_threads.c` in codepath practically
    unreachable in Windows builds, and in `tool_writeout.c` that falls back
    to `time()` for targets without it.
    
    Ref: #22593
    
    Closes #22594

    Changed files

    • CMake/win32-cache.cmake
    • CMakeLists.txt
    • configure.ac
  6. Change #278357

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 16 Aug 2026 12:41:04
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8eb978b9c212068371c39b37be1522904a790811

    Comments

    GHA/non-native: drop leftover perl5 install from riscv64 job [ci skip]
    Follow-up to bf594226d66dc2bbf62a18f3dea1ceabe5b26dcf #22601

    Changed files

    • .github/workflows/non-native.yml