Builder curl-ares-solaris11-i386 Build #5310
Results:
Build successful
SourceStamp:
| Project | curl |
| Repository | https://github.com/curl/curl.git |
| Branch | master |
| Revision | 8be2daae0fc60a9ab9d16fd8a399ece39174f4bc |
| Got Revision | 8be2daae0fc60a9ab9d16fd8a399ece39174f4bc |
| 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 | 5310 | Build |
| codebase | Build | |
| got_revision | 8be2daae0fc60a9ab9d16fd8a399ece39174f4bc | Git |
| osplatform | I386 | SetPropertyFromCommand Step |
| osrelease | 11 | SetPropertyFromCommand Step |
| project | curl | Build |
| repository | https://github.com/curl/curl.git | Build |
| revision | 8be2daae0fc60a9ab9d16fd8a399ece39174f4bc | 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 | Fri Jun 26 16:57:12 2026 |
| End | Fri Jun 26 18:39:28 2026 |
| Elapsed | 1 hrs, 42 mins, 15 secs |
All Changes:
:
Change #272929
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Fri 26 Jun 2026 15:45:24 Repository https://github.com/curl/curl.git Project curl Branch master Revision 84c5dcdb05202d3260b4631c2fa842123f87b362 Comments
tidy-up: syntax and code nits - cmp-pkg-config.sh: replace `-r -f` with `-rf` to match rest of repo. - configure.ac: add double quotes for robustness (not a bug). - curl-openssl.m4: merge nested `if`s. - CurlTests.c: drop `!= 0`, also to sync with m4. - CurlTests.c: replace `example.com` with `localhost` in `gethostbyname()` feature test code. (compile-only, not a bug) - GHA/http3-linux: drop literal `true` from bool expression. - lib650: drop redundant `&`. - move variable/call to left-hand side of equality checks, where missing. - perl: detach `<`/`>` from filename in `open()`, where missing. - schannel: apply two nit fixes lost in rebase. - scripts/verify-release: drop redundant double quotes. - scripts/verify-release: exit with error code on error. - synctime: replace magic numbers with `sizeof()`. - telnet: add missing parentheses to macro value. - tests/Makefile.am: use single quotes. - tool_operate: drop redundant `break` after `return` in VMS code. - unit2413: drop unused NULL pointer + free call. - unit2413: fix duplicate test case name. - urlapi: drop redundant parentheses. - urlapi: drop `CURL_UNCONST()` that became redundant. Closes #22186
Changed files
- .github/scripts/cmp-config.pl
- .github/scripts/cmp-pkg-config.sh
- .github/scripts/verify-synopsis.pl
- .github/workflows/http3-linux.yml
- CMake/CurlTests.c
- configure.ac
- docs/examples/adddocsref.pl
- docs/examples/log_failed_transfers.c
- docs/examples/synctime.c
- lib/telnet.c
- lib/urlapi.c
- lib/vtls/mbedtls.c
- lib/vtls/openssl.c
- lib/vtls/schannel.c
- lib/vtls/vtls.c
- lib/vtls/wolfssl.c
- m4/curl-openssl.m4
- scripts/badwords
- scripts/cd2cd
- scripts/managen
- scripts/mk-ca-bundle.pl
- scripts/verify-release
- src/tool_operate.c
- src/tool_ssls.c
- tests/Makefile.am
- tests/allversions.pm
- tests/libtest/lib650.c
- tests/server/util.c
- tests/test1707.pl
- tests/testutil.pm
- tests/unit/unit2413.c
Change #272930
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Fri 26 Jun 2026 15:45:24 Repository https://github.com/curl/curl.git Project curl Branch master Revision 4839029645bae1ff7f17e0f1c7543bc3eb30f471 Comments
cmake: robustify base path in local file reference To make the macro find this file also when used elsewhere than the root `CMakeLists.txt`. Current code only uses it from the root. Follow-up to 88c17d5587447b367c7ec836ff9b847860f52f75 Closes #22187
Changed files
- CMake/Macros.cmake
Change #272931
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Fri 26 Jun 2026 15:45:24 Repository https://github.com/curl/curl.git Project curl Branch master Revision 8198e388d31919ec610908d496d34ced2daf4fea Comments
cmake: tidy-up base directory variable for `include/*`/`CMake/*` files Use `PROJECT_SOURCE_DIR` for these files, replacing `CMAKE_CURRENT_SOURCE_DIR`, to make it consistent with rest of CMake sources and to reflect that the locations of these files are fixed and do not depend on the CMake source location referencing them. Exception: keep as-is before calling `project()`, which is where `PROJECT_SOURCE_DIR` is initialized. Ref: https://cmake.org/cmake/help/v3.18/command/project.html Follow-up to #22187 Follow-up to 9126eb5a8ad96f156586942facb069383a09c046 #15331 Closes #22188
Changed files
- CMakeLists.txt
Change #272932
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Fri 26 Jun 2026 15:45:24 Repository https://github.com/curl/curl.git Project curl Branch master Revision 8be2daae0fc60a9ab9d16fd8a399ece39174f4bc Comments
GHA/windows: set `VCPKG_APPLOCAL_DEPS=OFF` for vcpkg jobs Add the necessary directory to `PATH` instead. To disable a vcpkg feature (auto-copying DLL dependencies next to the build targets) that was causing CI flakiness in the libssh2 repository. In curl it currently cannot cause flakiness because targets (with DLL dependencies) reside in separate directories. AFAIU this vcpkg feature has been present and enabled by default for a long time, but only a recent update made it visible in the log and flaky at the same time, due to switching implementation. This patch removes log noise and potential issues, improves efficiency, and saves disk space: 74MB -> 71 in UWP, and 69MB -> 65 in the arm64 job. Time saving is negligible with current jobs. Refs: https://github.com/libssh2/libssh2/pull/2114 https://github.com/libssh2/libssh2/commit/30a0484cb7b350d779dbca87dbf9d7ba18a03547 https://github.com/microsoft/vcpkg/pull/52315 https://learn.microsoft.com/vcpkg/reference/installation-tree-layout Closes #22189
Changed files
- .github/workflows/windows.yml