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

Builder curl-unthreaded-solaris11-sparc Build #6233

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisiond854ab4673c2f9d8048c7f0f6d164b7e4d5e0865
Got Revisiond854ab4673c2f9d8048c7f0f6d164b7e4d5e0865
Changes1 change

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 3 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 23 mins, 33 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 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 6233 Build
codebase Build
got_revision d854ab4673c2f9d8048c7f0f6d164b7e4d5e0865 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision d854ab4673c2f9d8048c7f0f6d164b7e4d5e0865 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:

StartFri Aug 14 15:25:27 2026
EndFri Aug 14 16:15:26 2026
Elapsed49 mins, 58 secs

All Changes:

:

  1. Change #278202

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 14 Aug 2026 16:15:18
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d854ab4673c2f9d8048c7f0f6d164b7e4d5e0865

    Comments

    GHA/windows: install MSYS2 Perl manually on Windows 2025 runner
    In GitHub runner image windows-2025-vs2026 v20260810.198.2, the default
    Perl binary changed from MSYS2 to Strawberry. The reason is that the MSYS2
    installation not longer has Perl preinstalled.
    
    As seen in CMake configuration:
    ```diff
    - -- Found Perl: C:/a/_temp/msys64/usr/bin/perl.exe (found version "5.42.2")
    + -- Found Perl: C:/Strawberry/perl/bin/perl.exe (found version "5.42.0")
    ```
    
    curl's Perl scripts require an MSYS2 Perl. Fix by installing it manually
    in this one job.
    
    Symptom was `gencert.pl` no longer finding openssl.exe:
    ```
    Missing or broken 'openssl' tool. openssl 1.0.2+ is required.
    ```
    Then the script hanging while trying to trace it.
    
    Also:
    - add distinct error message and list PATH elements if openssl is not
      found via `gencert.pl`.
    - tried falling back to Git for Windows Perl, which caused the test step
      to either hang or run too slowly to fit the time slot.
    
    Refs:
    https://github.com/actions/runner-images/pull/14541
    https://github.com/actions/runner-images/releases/tag/win25-vs2026%2F20260810.198
    
    Bug: https://github.com/curl/curl/pull/22577#issuecomment-5286533641
    Bug: https://github.com/curl/curl/pull/22577#issuecomment-5291468024
    
    Closes #22580

    Changed files

    • .github/workflows/windows.yml
    • tests/certs/genserv.pl