Builder curl-ares-solaris10-i386 Build #3578
Results:
Failed runtest
SourceStamp:
Project | curl |
Repository | https://github.com/curl/curl.git |
Branch | master |
Revision | cb9b1a4c4e875ac4eac2209d8686acef3114abdf |
Got Revision | cb9b1a4c4e875ac4eac2209d8686acef3114abdf |
Changes | 2 changes |
BuildSlave:
unstable10xReason:
The SingleBranchScheduler scheduler named 'schedule-curl-ares-solaris10-i386' triggered this build
Steps and Logfiles:
Build Properties:
Name | Value | Source |
---|---|---|
branch | master | Build |
builddir | /export/home/buildbot/slave/curl-ares-solaris10-i386 | slave |
buildername | curl-ares-solaris10-i386 | Builder |
buildnumber | 3578 | Build |
codebase | Build | |
got_revision | cb9b1a4c4e875ac4eac2209d8686acef3114abdf | Git |
osplatform | I386 | SetPropertyFromCommand Step |
osrelease | 10 | SetPropertyFromCommand Step |
project | curl | Build |
repository | https://github.com/curl/curl.git | Build |
revision | cb9b1a4c4e875ac4eac2209d8686acef3114abdf | Build |
scheduler | schedule-curl-ares-solaris10-i386 | Scheduler |
slavename | unstable10x | BuildSlave |
workdir | /export/home/buildbot/slave/curl-ares-solaris10-i386 | slave (deprecated) |
Forced Build Properties:
Name | Label | Value |
---|
Responsible Users:
- Viktor Szakatscommit@vsz.me
Timing:
Start | Sat Jul 26 00:19:12 2025 |
End | Sat Jul 26 09:14:00 2025 |
Elapsed | 8 hrs, 54 mins, 47 secs |
All Changes:
:
Change #240641
Category curl Changed by Viktor Szakats <commit @vsz.me>Changed at Fri 25 Jul 2025 17:39:58 Repository https://github.com/curl/curl.git Project curl Branch master Revision 1055144063ca5f8c67ae6b7d727f76c9bdad88ba Comments
curl_ngtcp2: extend callback tables for nghttp3 1.11.0 and ngtcp2 1.14.0 An emergency update to initialize callbacks to NULL. May need further updates, e.g. to provide the recommended random generator callback for nghttp3. Fixing potential crashes at runtime in curl-for-win 8.15.0_3, and these build warnings: ``` /home/appveyor/projects/curl-for-win/curl/lib/vquic/curl_ngtcp2.c:836:1: warning: missing field 'begin_path_validation' initializer [-Wmissing-field-initializers] 836 | }; | ^ /home/appveyor/projects/curl-for-win/curl/lib/vquic/curl_ngtcp2.c:1186:1: warning: missing field 'recv_origin' initializer [-Wmissing-field-initializers] 1186 | }; | ^ 2 warnings generated. ``` Ref: https://ci.appveyor.com/project/curlorg/curl-for-win/builds/52462852#L14821 Also causing all `GHA/curl-for-win` jobs to fail: https://github.com/curl/curl/actions/runs/16523625082?pr=18010 Ref: https://github.com/ngtcp2/nghttp3/releases/tag/v1.11.0 Ref: https://github.com/ngtcp2/ngtcp2/releases/tag/v1.14.0 Ref: https://github.com/curl/curl-for-win/commit/ff788c81e44f998d0d41f362d442a7e97cc0fd46 Closes #18019
Changed files
- lib/vquic/curl_ngtcp2.c
Change #240663
Category curl Changed by Viktor Szakats <commit @vsz.me>Changed at Fri 25 Jul 2025 20:15:04 Repository https://github.com/curl/curl.git Project curl Branch master Revision cb9b1a4c4e875ac4eac2209d8686acef3114abdf Comments
curl_ossl: extend callback table for nghttp3 1.11.0 ``` ../../lib/vquic/curl_osslq.c:1091:1: error: missing initializer for field 'recv_origin' of 'nghttp3_callbacks' [-Werror=missing-field-initializers] 1091 | }; | ^ In file included from ../../lib/vquic/curl_osslq.c:33: /home/runner/nghttp3/build/include/nghttp3/nghttp3.h:2082:23: note: 'recv_origin' declared here 2082 | nghttp3_recv_origin recv_origin; | ^~~~~~~~~~~ ``` Ref: https://github.com/curl/curl/actions/runs/16527325587/job/46743893924?pr=18021#step:18:35 Follow-up to 1055144063ca5f8c67ae6b7d727f76c9bdad88ba #18019 Closes #18026
Changed files
- lib/vquic/curl_osslq.c