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

Builder curl-unthreaded-solaris11-i386 Build #3507

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision30ef79ed937ca0fc7592ff73d162398773c6a5aa
Got Revision30ef79ed937ca0fc7592ff73d162398773c6a5aa
Changes3 changes

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 11 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 1 hrs, 10 mins, 19 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 0 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 3507 Build
codebase Build
got_revision 30ef79ed937ca0fc7592ff73d162398773c6a5aa Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 30ef79ed937ca0fc7592ff73d162398773c6a5aa 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. Daniel Stenberg
  2. Stefan Eissing

Timing:

StartThu May 15 22:15:30 2025
EndFri May 16 01:50:29 2025
Elapsed3 hrs, 34 mins, 59 secs

All Changes:

:

  1. Change #229883

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Thu 15 May 2025 19:42:32
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision b4310c0fb970637d7e7e759c3e29f9323136eca3

    Comments

    docs/libcurl: mention sensitive data/headers
    In the CURLOPT_DEBUGFUNCTION and CURLOPT_VERBOSE documentation.
    
    Mentioned-by: Gordon Parke
    Fixes #17353
    Closes #17355

    Changed files

    • docs/libcurl/opts/CURLOPT_DEBUGFUNCTION.md
    • docs/libcurl/opts/CURLOPT_VERBOSE.md
  2. Change #229885

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Thu 15 May 2025 19:50:15
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f0bf43e20936cf4aa266521508c3e7b2a2feebad

    Comments

    libssh2: split up ssh_statemachine
    Into many sub functions.
    
    Complexity taken down from 150 to 37.
    
    Closes #17356

    Changed files

    • lib/vssh/libssh2.c
  3. Change #229892

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Thu 15 May 2025 21:44:31
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 30ef79ed937ca0fc7592ff73d162398773c6a5aa

    Comments

    pytest-xdist: pytest in parallel
    Require now pytest-xdist from tests/http/requirements.txt and
    run pytest in 'auto' parallel mode (counts cpu cores).
    
    For CI runs, set the worker count to 4, overriding the
    core count of 2 exposed in the images.
    
    - use Filelock to generate allocated ports at start for all
      workers and have subsequent workers just read the file and
      take the ports for their slot
    - make httpd config clearing a function fixture so every test
      starts with a clean httpd config
    - have fixture `configures_httpd` as parameter of test cases
      that configure httpd anyway, saving one reload
    - add pytest-xdist and filelock to required pyhton modules
    - add installs to ruff CI
    - give live checks waiting for a server to start up longer time
    - add fixtures to tests that rely on a server
    - do not stop servers unnecessarily. failures may not start them
      properly again, leading to unexpected fails in whatever follows
    - add a https: port to httpd that is *not* back by QUIC to allow
      failover tests without stopping the QUIC server
    
    Closes #17295

    Changed files

    • .github/workflows/checksrc.yml
    • .github/workflows/http3-linux.yml
    • .github/workflows/linux.yml
    • .github/workflows/macos.yml
    • tests/CMakeLists.txt
    • tests/Makefile.am
    • tests/http/conftest.py
    • tests/http/requirements.txt
    • tests/http/scorecard.py
    • tests/http/test_01_basic.py
    • tests/http/test_02_download.py
    • tests/http/test_03_goaway.py
    • tests/http/test_04_stuttered.py
    • tests/http/test_05_errors.py
    • tests/http/test_06_eyeballs.py
    • tests/http/test_07_upload.py
    • tests/http/test_08_caddy.py
    • tests/http/test_09_push.py
    • tests/http/test_10_proxy.py
    • tests/http/test_11_unix.py
    • tests/http/test_12_reuse.py
    • tests/http/test_13_proxy_auth.py
    • tests/http/test_14_auth.py
    • tests/http/test_15_tracing.py
    • tests/http/test_16_info.py
    • tests/http/test_17_ssl_use.py
    • tests/http/test_18_methods.py
    • tests/http/test_19_shutdown.py
    • tests/http/test_20_websockets.py
    • tests/http/test_30_vsftpd.py
    • tests/http/test_31_vsftpds.py
    • tests/http/test_32_ftps_vsftpd.py
    • tests/http/testenv/caddy.py
    • tests/http/testenv/curl.py
    • tests/http/testenv/env.py
    • tests/http/testenv/httpd.py
    • tests/http/testenv/nghttpx.py
    • tests/http/testenv/ports.py
    • tests/http/testenv/vsftpd.py