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

Builder curl-ares-solaris10-i386 Build #4513

Results:

Failed

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git updating ( 1 secs )
    1. stdio
    1. - no logs -
    1. - no logs -
  2. Runtest  
    1. - no logs -
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-ares-solaris10-i386 slave
buildername curl-ares-solaris10-i386 Builder
buildnumber 4513 Build
codebase Build
project curl Build
repository https://github.com/curl/curl.git Build
revision 0b04700029149d740f50b7925dd162aa270e3908 Build
scheduler schedule-curl-ares-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartSun Sep 13 19:27:17 2026
EndMon Sep 14 05:04:02 2026
Elapsed9 hrs, 36 mins, 45 secs

All Changes:

:

  1. Change #281645

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 13 Sep 2026 11:45:01
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3654c8dc85b998a645d41e50108e29d10439e484

    Comments

    GHA/non-native: bump cross-platform-actions, FreeBSD 14.5, enable DragonFly BSD jobs
    Try DragonFly BSD again, after upstream fix.
    
    Ref: https://github.com/cross-platform-actions/action/releases/tag/v1.6.0
    
    Follow-up to bf29c3e17544ff13c67e94157e6440662317355b #22145
    
    Closes #22931

    Changed files

    • .github/workflows/non-native.yml
  2. Change #281661

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sun 13 Sep 2026 15:56:57
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 0b04700029149d740f50b7925dd162aa270e3908

    Comments

    urlapi: run the urlparser perf test faster
    - Batch contiguous unencoded characters into single curlx_dyn_addn()
      calls instead of invoking dynbuf append byte-by-byte
    - Inline lowercasing in absolute url parsing
    - Make junkscan pass over data only once instead of twice
    - Use lookup-table to validate hostname in hostname_check()
    - Improve needs_dedotdot with leading memchr calls for dots and percent
    - Replace a strcspn() call with a while loop
    - Replace several strchr with memchr
    - Detect IPv6 earlier and skip some logic
    - Skip the full URL junkscan:
      - allows for better return codes for where the problem lies
      - allows for proper support for the URLENCODE flag
      - runs a little faster
    
    This completes the perf test roughly 17% faster on my machine in debug
    mode.
    
    Closes #22924

    Changed files

    • lib/urlapi.c
    • lib/vdns/doh.c
    • tests/libtest/lib1560.c