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

Builder ffmpegsos-solaris10-i386 Build #12556

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revisiondaee46ed7efa71ac317abfa835c3d3d00fd8eab4
Got Revisiondaee46ed7efa71ac317abfa835c3d3d00fd8eab4
Changes1 change

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpegsos-solaris10-i386' triggered this build

Steps and Logfiles:

  1. git update ( 10 secs )
    1. stdio
  2. shell 'gsed -i ...' ( 0 secs )
    1. stdio
  3. shell_1 'gsed -i ...' ( 0 secs )
    1. stdio
  4. shell_2 'gsed -i ...' failed ( 0 secs )
    1. stdio
  5. shell_3 './configure --samples="../../../ffmpeg/fate-suite" ...' failed ( 8 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 1 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config_sos.sh' failed ( 0 secs )
    1. stdio
    2. configure.log
    3. compile.log
    4. test.log

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/ffmpegsos-solaris10-i386 slave
buildername ffmpegsos-solaris10-i386 Builder
buildnumber 12556 Build
codebase Build
got_revision daee46ed7efa71ac317abfa835c3d3d00fd8eab4 Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision daee46ed7efa71ac317abfa835c3d3d00fd8eab4 Build
scheduler schedule-ffmpegsos-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/ffmpegsos-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Kacper Michajłow

Timing:

StartWed Jul 30 20:02:08 2025
EndWed Jul 30 20:02:30 2025
Elapsed21 secs

All Changes:

:

  1. Change #241351

    Category ffmpeg
    Changed by Kacper Michajłow <kasper93ohnoyoudont@gmail.com>
    Changed at Wed 30 Jul 2025 02:56:12
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision daee46ed7efa71ac317abfa835c3d3d00fd8eab4

    Comments

    Revert "avformat/tls_openssl: properly get new BIO index"
    BIO_get_new_index() is static counter meant to get index for custom bio
    type definition. As we can read in the documentation:
    
    > Note that BIO_get_new_index() can only be used 127 times before it
    > returns an error.
    
    We cannot call it repeatedly, because it will fail eventually.
    
    To my understanding the index is not needed in our use and we could
    safely use BIO_TYPE_NONE. Documentation states:
    
    > type can be set to either BIO_TYPE_NONE or via BIO_get_new_index() if
    > a unique type is required for searching (See BIO_find_type(3))
    
    We don't use any search related functions.
    
    This reverts commit 816dad231f5b312fd98e81cc6a6cbaf47c1e26a5.
    Fixes: https://github.com/mpv-player/mpv/issues/16589
    
    Signed-off-by: Kacper Michajłow <kasper93@gmail.com>

    Changed files

    • libavformat/tls_openssl.c