Builder curl-ares-solaris11-i386 Build #4682
Results:
Build successful
SourceStamp:
| Project | curl |
| Repository | https://github.com/curl/curl.git |
| Branch | master |
| Revision | 26eddf002f0d9e957ff21865bddfbdf25b4521f5 |
| Got Revision | 26eddf002f0d9e957ff21865bddfbdf25b4521f5 |
| Changes | 4 changes |
BuildSlave:
unstable11xReason:
The SingleBranchScheduler scheduler named 'schedule-curl-ares-solaris11-i386' triggered this build
Steps and Logfiles:
Build Properties:
| Name | Value | Source |
|---|---|---|
| branch | master | Build |
| builddir | /export/home/buildbot/slave/curl-ares-solaris11-i386 | slave |
| buildername | curl-ares-solaris11-i386 | Builder |
| buildnumber | 4682 | Build |
| codebase | Build | |
| got_revision | 26eddf002f0d9e957ff21865bddfbdf25b4521f5 | Git |
| osplatform | I386 | SetPropertyFromCommand Step |
| osrelease | 11 | SetPropertyFromCommand Step |
| project | curl | Build |
| repository | https://github.com/curl/curl.git | Build |
| revision | 26eddf002f0d9e957ff21865bddfbdf25b4521f5 | Build |
| scheduler | schedule-curl-ares-solaris11-i386 | Scheduler |
| slavename | unstable11x | BuildSlave |
| workdir | /export/home/buildbot/slave/curl-ares-solaris11-i386 | slave (deprecated) |
Forced Build Properties:
| Name | Label | Value |
|---|
Responsible Users:
- Viktor Szakatscommit@vsz.me
Timing:
| Start | Thu Feb 26 06:18:48 2026 |
| End | Thu Feb 26 08:47:04 2026 |
| Elapsed | 2 hrs, 28 mins, 15 secs |
All Changes:
:
Change #258985
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Thu 26 Feb 2026 04:19:18 Repository https://github.com/curl/curl.git Project curl Branch master Revision d38bf7949d3acf5b484187fd3e81e0bd33b56715 Comments
tests/server: fix to clear the complete `srvr_sockaddr_union_t` variable Reported by clang-tidy (seen on Linux with v18, v19, v20, not on macOS): ``` tests/server/dnsd.c:552:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage] tests/server/dnsd.c:556:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage] tests/server/rtspd.c:1183:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage] tests/server/rtspd.c:1187:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage] tests/server/sws.c:2235:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage] tests/server/sws.c:2239:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage] tests/server/tftpd.c:1188:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage] tests/server/tftpd.c:1192:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage] tests/server/util.c:860:21: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage] tests/server/util.c:864:21: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage] ``` Ref: https://github.com/curl/curl/actions/runs/22424827575/job/64930560425?pr=20725 Cherry-picked from #20725 Closes #20730
Changed files
- tests/server/dnsd.c
- tests/server/rtspd.c
- tests/server/sws.c
- tests/server/tftpd.c
- tests/server/util.c
Change #258986
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Thu 26 Feb 2026 04:19:18 Repository https://github.com/curl/curl.git Project curl Branch master Revision b1f853a3849d0e8116ae4e2aedfb9ca65f92282d Comments
unit3205: suppress two clang-tidy false positives Silencing: ``` tests/unit/unit3205.c:565:32: error: the result from calling 'memcpy' is not null-terminated [bugprone-not-null-terminated-result] 565 | expect = (const char *)memcpy(alt, "DHE-", 4); | ^~~~~~ ~~~ | strcpy tests/unit/unit3205.c:569:32: error: the result from calling 'memcpy' is not null-terminated [bugprone-not-null-terminated-result] 569 | expect = (const char *)memcpy(alt + 4, "DHE-", 4) - 4; | ^~~~~~ ~~~ | strcpy ``` Ref: https://github.com/curl/curl/actions/runs/22425366818/job/64932197466?pr=20725 Cherry-picked from #20725 Closes #20731Changed files
- tests/unit/unit3205.c
Change #259000
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Thu 26 Feb 2026 05:08:30 Repository https://github.com/curl/curl.git Project curl Branch master Revision 137e87ca721e0aec387273964cb8a9872c85f22a Comments
clang-tidy: enable scanning headers By setting `HeaderFilterRegex: '.*'`. Closes #20720
Changed files
- .clang-tidy.yml
Change #259001
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Thu 26 Feb 2026 05:08:30 Repository https://github.com/curl/curl.git Project curl Branch master Revision 26eddf002f0d9e957ff21865bddfbdf25b4521f5 Comments
GHA/linux: switch clang-tidy job to cmake for 2x speed, bump to v20, enable for tests Checking lib and src under 3m15s versus 7m15s. Downside: autotools clang-tidy support is no longer CI-tested. The reason for the slowness is invoking a single clang-tidy command with all source files, and clang-tidy checking them in a single thread, sequentially. clang-tidy offers a `run-clang-tidy` Python script for parallel processing, which may help with this. However at this point it's more practical to use cmake, which also supports verifying the whole codebase, not only lib and src. Also: - bump clang-tidy to the latest available, v20 (from v18). - enable running clang-tidy on tests. Takes under 2 minutes. Also tried `_CURL_TESTS_CONCAT=ON`, it brings down the build tests step from 1m47s to 54s, saving 1 minute. Skipped using it for now. Closes #20725
Changed files
- .github/workflows/linux.yml