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

Builder curl-threaded-solaris10-i386 Build #4484

Build In Progress:

Runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision2a993e2a4a3d057b277e0e2dd490c5c9466b6d94
Got Revision2a993e2a4a3d057b277e0e2dd490c5c9466b6d94
Changes7 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 8 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( running )
    1. stdio
    2. resultlog
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-threaded-solaris10-i386 slave
buildername curl-threaded-solaris10-i386 Builder
buildnumber 4484 Build
codebase Build
got_revision 2a993e2a4a3d057b277e0e2dd490c5c9466b6d94 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 2a993e2a4a3d057b277e0e2dd490c5c9466b6d94 Build
scheduler schedule-curl-threaded-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-threaded-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats
  2. alhudz

Timing:

StartFri Jun 19 03:49:54 2026
Elapsed7 hrs, 54 mins, 34 secs

All Changes:

:

  1. Change #271695

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 18 Jun 2026 19:26:19
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c972583f6c57d15437e36c63cb0bc19790a7f2b8

    Comments

    MANUAL.md: update `apt-key` example
    To use `tee` instead, due to `apt-key` being deprecated, and missing
    from recent distros.
    
    Also lowercase `stdin` to match rest of the file.
    
    Ref: https://documentation.ubuntu.com/release-notes/26.04/summary-for-lts-users/#package-management-apt-3
    
    Follow-up to b13e9066b3dfd65ba8aadc336232ae7832ac687a #16127
    Follow-up to 54130a6cad4e044a199f40e857c300a139818b9b #10170
    
    Closes #22090

    Changed files

    • docs/MANUAL.md
  2. Change #271696

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 18 Jun 2026 19:27:15
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 950a30d762d86e3a10154e480a9e7a5a6d7cbabe

    Comments

    GHA/http3-linux: bump to ubuntu-26.04
    Before: https://github.com/curl/curl/actions/runs/27772068909
    After: https://github.com/curl/curl/actions/runs/27772321661?pr=22089
    
    Closes #22089

    Changed files

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

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 18 Jun 2026 21:12:17
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e44f1a1446f8e72573e5a1026807e71a0495f88d

    Comments

    smb: constify `strchr()` result variable
    Fixing (as seen with gcc-15 on Ubuntu 26.04):
    ```
    lib/smb.c: In function 'smb_connect':
    lib/smb.c:491:9: error: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
      491 |   slash = strchr(user, '/');
          |         ^
    lib/smb.c:493:11: error: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
      493 |     slash = strchr(user, '\\');
          |           ^
    ```
    Ref: https://github.com/curl/curl/actions/runs/27778098314/job/82195462418?pr=22092
    
    Follow-up to 4e5908306ad5febee88f7eae8ea3b0c41a6b7d84 #20428
    Follow-up to 7dc60bdb90c710c2e36b2d05aa3686ff491a9bbe #20425
    Follow-up to 0e2507a3c65376d6bda860ff20bd94ada9bbb9fd #20421
    
    Cherry-picked from #22092
    
    Closes #22094

    Changed files

    • lib/smb.c
  4. Change #271743

    Category curl
    Changed by alhudz <al.hudz.kohnoyoudont@gmail.com>
    Changed at Thu 18 Jun 2026 23:58:07
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision fdd6ba3580f877a71394e106bd66f8d81fcb5771

    Comments

    cookie: check __Secure- and __Host- case sensitively when read from file
    The header path matches these prefixes case sensitively, as 5af0165562
    made it for cookie spec reasons, but the Netscape cookie-file path still
    used a case-insensitive match. Align the file path so a differently
    cased name like __secure-x is treated as an ordinary cookie instead of
    being put through the prefix integrity checks.
    
    Extended test 2311 to cover it.
    
    Closes #22085

    Changed files

    • lib/cookie.c
    • tests/data/test2311
  5. Change #271747

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 19 Jun 2026 00:14:18
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 139ce4d37cfdc3126179bdb166ec61a095360c62

    Comments

    GHA: separate pytype from other checkers and pips
    pytype is discontinued, does not receive further updates, and it
    requires older python, offered by Ubuntu 24.04 or older.
    
    Move it to its own GHA job to allow bumping the rest of checkers to.
    newer runner images. Also move it out from the shared `requirements.txt`
    and install directly from its separate GHA job, to avoid installing it
    unnecessarily from others. Since it does not receive update, it's fine
    to move out from Dependabot's view.
    
    Ref: https://pypi.org/project/pytype/
    Cherry-picked from #22092
    
    Closes #22096

    Changed files

    • .github/scripts/requirements.txt
    • .github/workflows/checksrc.yml
  6. Change #271754

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 19 Jun 2026 00:53:04
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8f5e4f020e79ec1fd1e8540bdea3c1c20030405b

    Comments

    GHA: fix Linux triplet passed to `CMAKE_C_COMPILER_TARGET`
    Before this patch it broke clang 20/21 cmake builds on ubuntu-26.04-arm
    runner, failing at the beginning of the configure stage while probing
    the compiler.
    
    Seen in the 'CM openssl clang krb5 LTO' job:
    ```
    : && /usr/bin/clang --target=aarch64-pc-linux-gnu   CMakeFiles/cmTC_3d9ae.dir/testCCompiler.c.o -o cmTC_3d9ae   && :
        /usr/bin/aarch64-linux-gnu-ld.bfd: cannot find crtbeginS.o: No such file or directory
        /usr/bin/aarch64-linux-gnu-ld.bfd: cannot find -lgcc: No such file or directory
        /usr/bin/aarch64-linux-gnu-ld.bfd: cannot find -lgcc_s: No such file or directory
    ```
    Ref: https://github.com/curl/curl/actions/runs/27778098314/job/82195462687#step:38:66
    
    Follow-up to 36bd8074758a0b3a784403eb3d2cc31d240de896 #15242
    Follow-up to 232302f88a152a1d1722da9f69c383a766528918 #14382
    Cherry-picked from #22092
    
    Closes #22097

    Changed files

    • .github/workflows/http3-linux.yml
    • .github/workflows/linux.yml
  7. Change #271758

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 19 Jun 2026 01:09:53
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2a993e2a4a3d057b277e0e2dd490c5c9466b6d94

    Comments

    GHA: re-sync Linux CMake triplet with autotools builds
    Follow-up to 8f5e4f020e79ec1fd1e8540bdea3c1c20030405b #22097

    Changed files

    • .github/workflows/http3-linux.yml
    • .github/workflows/linux.yml