Files
jellyfin-ffmpeg/doc/fate_config.sh.template
T

63 lines
2.1 KiB
Plaintext
Raw Normal View History

2014-03-27 13:53:19 +01:00
slot= # some unique identifier
2025-09-16 19:12:53 +08:00
repo=https://git.ffmpeg.org/ffmpeg.git # the source repository
2015-06-10 21:25:18 +02:00
#branch=release/2.6 # the branch to test
2014-03-27 13:53:19 +01:00
samples= # path to samples directory
workdir= # directory in which to do all the work
#fate_recv="ssh -T fate@fate.ffmpeg.org" # command to submit report
comment= # optional description
build_only= # set to "yes" for a compile-only instance that skips tests
2026-05-28 10:52:35 +08:00
skip_clean= # set to "yes" to preserve build/install directories
2017-10-16 18:20:17 +01:00
ignore_tests=
2014-03-27 13:53:19 +01:00
# the following are optional and map to configure options
arch=
cpu=
2026-05-25 19:01:52 +08:00
toolchain=
2014-03-27 13:53:19 +01:00
cross_prefix=
2026-05-28 10:52:35 +08:00
ar=
2014-03-27 13:53:19 +01:00
as=
cc=
2026-05-25 19:01:52 +08:00
cxx=
2014-03-27 13:53:19 +01:00
ld=
2026-05-25 19:01:52 +08:00
nm=
2014-03-27 13:53:19 +01:00
target_os=
sysroot=
target_exec=
target_path=
target_samples=
extra_cflags=
2026-05-25 19:01:52 +08:00
extra_cxxflags=
extra_objcflags=
2014-03-27 13:53:19 +01:00
extra_ldflags=
extra_libs=
extra_conf= # extra configure options not covered above
#make= # name of GNU make if not 'make'
makeopts= # extra options passed to 'make'
2017-10-16 18:20:17 +01:00
#makeopts_fate= # extra options passed to 'make' when running tests,
# defaulting to makeopts above if this is not set
2014-03-27 13:53:19 +01:00
#tar= # command to create a tar archive from its arguments on stdout,
# defaults to 'tar c'
2024-08-03 18:31:39 +08:00
#fate_targets= # targets to make when running fate; defaults to "fate",
# can be set to run a subset of tests, e.g. "fate-checkasm".
#fate_environments= # a list of names of configurations to run tests for;
# each round is run with variables from ${${name}_env} set.
# One example of using fate_environments:
# target_exec="qemu-aarch64-static"
# fate_targets="fate-checkasm fate-cpu"
# fate_environments="sve128 sve256"
# sve128_env="QEMU_CPU=max,sve128=on"
# sve256_env="QEMU_CPU=max,sve256=on"
# The variables set by fate_environments can also be used explicitly
# by target_exec, e.g. like this:
# target_exec="qemu-aarch64-static -cpu \$(MY_CPU)"
# fate_targets="fate-checkasm fate-cpu"
# fate_environments="sve128 sve256"
# sve128_env="MY_CPU=max,sve128=on"
# sve256_env="MY_CPU=max,sve256=on"