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

Builder curl-unthreaded-solaris11-i386 Build #5044

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision01f08dc4eb20a19aa60230653715c8b839619cbb
Got Revision01f08dc4eb20a19aa60230653715c8b839619cbb
Changes2 changes

BuildSlave:

unstable11x

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-unthreaded-solaris11-i386' triggered this build

Steps and Logfiles:

  1. git update ( 25 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 1 hrs, 2 mins, 44 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-unthreaded-solaris11-i386 slave
buildername curl-unthreaded-solaris11-i386 Builder
buildnumber 5044 Build
codebase Build
got_revision 01f08dc4eb20a19aa60230653715c8b839619cbb Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 01f08dc4eb20a19aa60230653715c8b839619cbb Build
scheduler schedule-curl-unthreaded-solaris11-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris11-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartTue May 12 05:46:10 2026
EndTue May 12 08:07:56 2026
Elapsed2 hrs, 21 mins, 46 secs

All Changes:

:

  1. Change #266789

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 12 May 2026 04:26:33
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision b582a936dd207fe2f2d1346208e5411686548891

    Comments

    GHA/linux: build local wolfSSL opensslextra with `--enable-ed25519`
    For use with RFC 9421 HTTP Message Signatures support.
    
    Ref: https://github.com/curl/curl/pull/21239/files#r3222322908
    Ref: #21239
    
    Closes #21555

    Changed files

    • .github/workflows/linux.yml
  2. Change #266801

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 12 May 2026 05:33:08
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 01f08dc4eb20a19aa60230653715c8b839619cbb

    Comments

    gnutls: fix more nettle 4+ compatibility issues
    - disable DES with nettle 4. It no longer supports it.
      ```
      lib/curl_ntlm_core.c:67:12: fatal error: 'nettle/des.h' file not found
         67 | #  include <nettle/des.h>
            |            ^~~~~~~~~~~~~~
      ```
    
    - fix MD4 support with nettle 4.
      ```
      lib/md4.c:178:36: error: too many arguments to function call, expected 2, have 3
        178 |   md4_digest(ctx, MD4_DIGEST_SIZE, digest);
            |   ~~~~~~~~~~                       ^~~~~~
      ```
    
    - fix unused argument compiler warning:
      ```
      lib/vtls/gtls.c:2267:39: error: unused parameter 'sha256len' [clang-diagnostic-unused-parameter,-warnings-as-errors]
      2267 |                                size_t sha256len)
           |                                       ^
      ```
      Ref: https://github.com/curl/curl/actions/runs/25710321195/job/75488970143?pr=21557
    
    - GHA/macos: stop enabling NTLM in the GnuTLS job.
      It no longer builds due to missing DES support in nettle 4.
      ```
      lib/curl_ntlm_core.c:90:4: error: "cannot compile NTLM support without a crypto library with DES."
         90 | #  error "cannot compile NTLM support without a crypto library with DES."
            |    ^
      ```
      Ref: https://github.com/curl/curl/actions/runs/25710321195/job/75488970170?pr=21557
    
    Follow-up to cfadbaa133504d47ece989486fde944d076e0222 #21169
    
    Closes #21557

    Changed files

    • .github/workflows/macos.yml
    • lib/curl_ntlm_core.c
    • lib/md4.c
    • lib/vtls/gtls.c