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

Builder curl-ares-solaris10-sparc Build #3495

Results:

Exception setproperty

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 1 mins, 27 secs )
    1. stdio
    1. - no logs -
  2. Runtest  
    1. - no logs -
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/curl-ares-solaris10-sparc slave
buildername curl-ares-solaris10-sparc Builder
buildnumber 3495 Build
codebase Build
got_revision 32500f12c444536f2f73b08e678fc67175335cd9 Git
project curl Build
repository https://github.com/curl/curl.git Build
revision 32500f12c444536f2f73b08e678fc67175335cd9 Build
scheduler schedule-curl-ares-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/curl-ares-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartTue Mar 17 13:39:36 2026
EndWed Mar 18 01:14:16 2026
Elapsed11 hrs, 34 mins, 40 secs

All Changes:

:

  1. Change #261248

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 17 Mar 2026 02:47:05
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 1e3c2bec7eb735736755e15a48701f5b2d5b5979

    Comments

    GHA/http3-linux: add CI reproducer for `--with-ngtcp2=<path>` regression
    Configure LibreSSL autotools job with `--with-ngtcp=<path>` instead of
    adding ngtcp2 to `PKG_CONFIG_PATH`. To test this way of configuration in
    CI and test for the regression reported in #20889.
    
    Turns out this way of configuration isn't affected by the detection
    issue in this particular case.
    
    It also works for other backends except for these two, subject to
    separate fixes:
    - BoringSSL fix: https://github.com/ngtcp2/ngtcp2/pull/2070
    - GnuTLS fix and BoringSSL workaround: #20920
    
    Follow-up to 666db801963afca671ee5fa83bd2e9ed79fb8886 #20891
    Follow-up to 8db0e286b363ad788d6dc0779d605b83c7ed4caf #18189
    Follow-up to 99500660af19f89069e71c2251c13963401b3806 #18028 #18022
    
    Closes #20926

    Changed files

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

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 17 Mar 2026 02:47:05
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 1e3c2bec7eb735736755e15a48701f5b2d5b5979

    Comments

    GHA/http3-linux: add CI reproducer for `--with-ngtcp2=<path>` regression
    Configure LibreSSL autotools job with `--with-ngtcp=<path>` instead of
    adding ngtcp2 to `PKG_CONFIG_PATH`. To test this way of configuration in
    CI and test for the regression reported in #20889.
    
    Turns out this way of configuration isn't affected by the detection
    issue in this particular case.
    
    It also works for other backends except for these two, subject to
    separate fixes:
    - BoringSSL fix: https://github.com/ngtcp2/ngtcp2/pull/2070
    - GnuTLS fix and BoringSSL workaround: #20920
    
    Follow-up to 666db801963afca671ee5fa83bd2e9ed79fb8886 #20891
    Follow-up to 8db0e286b363ad788d6dc0779d605b83c7ed4caf #18189
    Follow-up to 99500660af19f89069e71c2251c13963401b3806 #18028 #18022
    
    Closes #20926

    Changed files

    • .github/workflows/http3-linux.yml
  3. Change #261259

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 17 Mar 2026 10:26:35
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision b98981e16b5d85895853e6d203ab160a33101a70

    Comments

    url: don't assume all transfers have hostnames
    Follow-up from 412cd2577ac880be4fae78808e2a1d1c00da833e
    
    Add test 1659 to verify --connect-to when doing file:// transfers.
    
    Reported-by: James Fuller
    Closes #20948

    Changed files

    • lib/url.c
    • tests/data/Makefile.am
    • tests/data/test1659
  4. Change #261278

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 17 Mar 2026 12:28:58
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 32500f12c444536f2f73b08e678fc67175335cd9

    Comments

    HTTP3.md: minor improvements
    - document building curl with CMake.
    
    - mention all supported forks in the OpenSSL section. Delete dedicated
      quictls section.
    
    - add TLS-backend pkgconfig dir to `PKG_CONFIG_PATH` for correctness.
      OpenSSL-based ones often work without this, by finding system
      `openssl.pc`. For GnuTLS and wolfSSL this has a lesser chance. Best to
      point to them explicitly. (configure may technically be able to do
      this automatically, but it isn't implemented.)
    
    - use `--with-ngtcp2=<path>` again, where possible.
      GnuTLS is the exception, pending fix in #20910.
      Same for BoringSSL, but not documented in `HTTP3.md`.
    
    - replace `<somewhereN>` with `/path/to/depname` for clarity.
    
    - move `LDFLAGS` after `./configure` for curl, to match dep builds.
    
    - move `--with-ngtcp2` next to the TLS-backend option.
    
    Follow-up to 1e3c2bec7eb735736755e15a48701f5b2d5b5979 #20926
    Follow-up to 3c64ffaff4cd8c8275627dd2e17b6879a1d32262 #18415 #18188
    Cherry-picked from #20920
    
    Closes #20947

    Changed files

    • docs/HTTP3.md