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

Builder curl-unthreaded-solaris11-i386 Build #3782

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 10 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 1 hrs, 2 mins, 19 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-i386 slave
buildername curl-unthreaded-solaris11-i386 Builder
buildnumber 3782 Build
codebase Build
got_revision d1da9543f86a1356976e17aa7dc8e8b4fef09e2b Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision d1da9543f86a1356976e17aa7dc8e8b4fef09e2b Build
scheduler schedule-curl-unthreaded-solaris11-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris11-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartSat Aug 2 00:02:57 2025
EndSat Aug 2 03:07:15 2025
Elapsed3 hrs, 4 mins, 17 secs

All Changes:

:

  1. Change #241658

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 01 Aug 2025 23:22:32
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2bad773b3079a50a1962731ed1ede953c16d088d

    Comments

    urlapi: allow more path characters "raw" when asked to URL encode
    Setting the path component to contain the letters:
    
        ! $ & ' ( ) { } [ ] * + , ; = : @
    
    now leaves them un-encoded when CURLU_URLENCODE is used.
    
    Amended test 1560 to verify.
    
    Reported-by: Jeroen Ooms
    Fixes #17977
    Closes #18024

    Changed files

    • docs/libcurl/curl_url_set.md
    • lib/urlapi.c
    • tests/libtest/lib1560.c
  2. Change #241659

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 01 Aug 2025 23:24:32
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 18e00c8ed052485b2ae4e3006ced6ec4e98ee5d1

    Comments

    managen: reset text mode at end of table marker
    It previously mostly ignored it which lead to bad format after a table
    has ended with "##".
    
    Closes #18139

    Changed files

    • scripts/managen
    • tests/data/test1706
  3. Change #241663

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 01 Aug 2025 23:54:12
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 54da6f5a3281c9c66a184e23302e22c48ca1773c

    Comments

    build: if no perl, fix to use the pre-built hugehelp, if present
    - cmake: Before this patch a missing perl disabled the curl manual.
      After this patch, it automatically picks up a pre-built hugehelp,
      if present (= when building from a release tarball).
      Follow-up to 0035ff45c59437db1a8ffe960b40905c8582b149 #16081
    
    - autotools: Rework behavior when perl is missing. Before this patch
      it caused a hard error when docs/manual/ca-embed were enabled.
      Of these, docs were enabled by default. After this patch, doc
      generation is automatically skipped, with a warning. Manual generation
      falls back to using a pre-built hugehelp, or a stub if that's missing.
      CA-embed is automatically skipped, with a warning.
      Slight difference from cmake: When built with no perl and no pre-built
      hugehelp, the manual is enabled, but the content is empty; with cmake
      it's disabled proper.
      Follow-up to 137aecfbf1e933e7228a4f62cc977eabffb2afbf #13514
      Follow-up to 541321507e386744c3ea1200cc83cc98338e27d7 #12857
    
    Also:
    - GHA/distcheck: verify if the pre-built hugehelp makes it into curl.
    - GHA/distcheck: streamline disabling perl with autotools.
    - GHA/distcheck: `--disable-docs` no longer required to build without perl.
      Passing it also implicitly disables the curl manual, which is
      undesired in these tests.
    - cmake: drop redundant `HAVE_MANUAL_TOOLS` interim variable.
    - cmake: move two `set()` lines close to their counterparts.
    
    Follow-up to 25119fbaaa76a182d4b08d64853d0a8db9181219 #18104
    
    Closes #18118

    Changed files

    • .github/workflows/distcheck.yml
    • CMakeLists.txt
    • acinclude.m4
    • configure.ac
    • src/CMakeLists.txt
    • src/Makefile.am
  4. Change #241664

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 01 Aug 2025 23:58:17
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d1da9543f86a1356976e17aa7dc8e8b4fef09e2b

    Comments

    CURLOPT: replace `(long)` cast with `L` suffix for `CURLHSTS_*` macros
    In curl/curl.h and the man page. To match the rest of CURLOPT macros.
    
    Cherry-picked from #18130

    Changed files

    • docs/libcurl/opts/CURLOPT_HSTS_CTRL.md
    • include/curl/curl.h