Builder curl-unthreaded-solaris10-sparc Build #14037
Build In Progress:
[waiting for Lock]SourceStamp:
| Project | curl |
| Repository | https://github.com/curl/curl.git |
| Branch | master |
| Revision | 2a993e2a4a3d057b277e0e2dd490c5c9466b6d94 |
| Changes | 5 changes |
BuildSlave:
unstable10sReason:
The SingleBranchScheduler scheduler named 'schedule-curl-unthreaded-solaris10-sparc' triggered this build
Steps and Logfiles:
-
- - no logs -
-
- - no logs -
-
- - no logs -
-
- - no logs -
-
- - no logs -
Build Properties:
| Name | Value | Source |
|---|---|---|
| branch | master | Build |
| builddir | /export/home/buildbot-unstable10s/slave/curl-unthreaded-solaris10-sparc | slave |
| buildername | curl-unthreaded-solaris10-sparc | Builder |
| buildnumber | 14037 | Build |
| codebase | Build | |
| project | curl | Build |
| repository | https://github.com/curl/curl.git | Build |
| revision | 2a993e2a4a3d057b277e0e2dd490c5c9466b6d94 | Build |
| scheduler | schedule-curl-unthreaded-solaris10-sparc | Scheduler |
| slavename | unstable10s | BuildSlave |
| workdir | /export/home/buildbot-unstable10s/slave/curl-unthreaded-solaris10-sparc | slave (deprecated) |
Forced Build Properties:
| Name | Label | Value |
|---|
Responsible Users:
- Viktor Szakatscommit@vsz.me
- alhudzal.hudz.k@gmail.com
Timing:
| Start | Fri Jun 19 08:26:12 2026 |
| Elapsed | 3 hrs, 15 mins, 11 secs |
All Changes:
:
Change #271710
Category curl Changed by Viktor Szakats <commit@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 #22094Changed files
- lib/smb.c
Change #271743
Category curl Changed by alhudz <al.hudz.k@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
Change #271747
Category curl Changed by Viktor Szakats <commit@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
Change #271754
Category curl Changed by Viktor Szakats <commit@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 #22097Changed files
- .github/workflows/http3-linux.yml
- .github/workflows/linux.yml
Change #271758
Category curl Changed by Viktor Szakats <commit@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