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

Builder ffmpeg-solaris10-sparc Build #12192

Results:

Failed shell_2 shell_3 shell_4 shell_5

SourceStamp:

Projectffmpeg
Repositoryhttps://git.ffmpeg.org/ffmpeg.git
Branchmaster
Revision214248e2d6c61bcbf1c7f61ee1013e5c91a8597e
Got Revision214248e2d6c61bcbf1c7f61ee1013e5c91a8597e
Changes2 changes

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-ffmpeg-solaris10-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 1 mins, 41 secs )
    1. stdio
  2. shell 'gsed -i ...' ( 1 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 ( 17 secs )
    1. stdio
    2. config.log
  6. shell_4 'gmake fate-rsync' failed ( 0 secs )
    1. stdio
  7. shell_5 '../../../ffmpeg/fate.sh ../../../ffmpeg/fate_config.sh' failed ( 1 secs )
    1. stdio
    2. configure.log
    3. compile.log
    4. test.log

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/ffmpeg-solaris10-sparc slave
buildername ffmpeg-solaris10-sparc Builder
buildnumber 12192 Build
codebase Build
got_revision 214248e2d6c61bcbf1c7f61ee1013e5c91a8597e Git
project ffmpeg Build
repository https://git.ffmpeg.org/ffmpeg.git Build
revision 214248e2d6c61bcbf1c7f61ee1013e5c91a8597e Build
scheduler schedule-ffmpeg-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/ffmpeg-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Jack Lau

Timing:

StartSat Jun 21 06:48:16 2025
EndSat Jun 21 06:50:21 2025
Elapsed2 mins, 4 secs

All Changes:

:

  1. Change #237191

    Category ffmpeg
    Changed by Jack Lau <jacklau1222ohnoyoudont@qq.com>
    Changed at Sat 21 Jun 2025 06:01:14
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 177b92df2b054895f75e3cdd00d68b91a47a243f

    Comments

    avformat/tls_openssl: fix warnings when openssl is lower version
    api doc: https://docs.openssl.org/1.0.2/man3/BIO_s_mem
    
    In higher versions (openssl 1.0.2 and higher),
    the function signature is BIO *BIO_new_mem_buf(const void *buf, int len),
    so passing a const string doesn't cause an warnings.
    However, in lower versions of OpenSSL,
    the function signature becomes BIO *BIO_new_mem_buf(void *buf, int len),
    which leads to warnings.
    
    OpenSSL guarantees that it will not modify the string,
    so it's safe to cast the pem_str to (void *) to avoid this warning.
    
    Signed-off-by: Jack Lau <jacklau1222@qq.com>
    Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>

    Changed files

    • libavformat/tls_openssl.c
  2. Change #237192

    Category ffmpeg
    Changed by Jack Lau <jacklau1222ohnoyoudont@qq.com>
    Changed at Sat 21 Jun 2025 06:05:13
    Repository https://git.ffmpeg.org/ffmpeg.git
    Project ffmpeg
    Branch master
    Revision 214248e2d6c61bcbf1c7f61ee1013e5c91a8597e

    Comments

    avformat/whip: mark as experimental
    This patch doesn't effect WHIP usage via command, as WHIP always
    needs to be explicitly specified
    
    Signed-off-by: Jack Lau <jacklau1222@qq.com>
    Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>

    Changed files

    • doc/muxers.texi
    • libavformat/whip.c