Commit c209d0df authored by Diego Biurrun's avatar Diego Biurrun Committed by Martin Storsjö

fate.sh: add support for build-only FATE instances

If the "build_only" variable is set in the configuration file, the
FATE client will skip running tests and just compile all targets.
Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent a030279a
...@@ -120,6 +120,7 @@ samples=/path/to/fate/samples ...@@ -120,6 +120,7 @@ samples=/path/to/fate/samples
workdir= # directory in which to do all the work workdir= # directory in which to do all the work
fate_recv="ssh -T fate@@fate.libav.org" # command to submit report fate_recv="ssh -T fate@@fate.libav.org" # command to submit report
comment= # optional description comment= # optional description
build_only= # set to "yes" for a compile-only instance that skips tests
# the following are optional and map to configure options # the following are optional and map to configure options
arch= arch=
......
...@@ -66,6 +66,7 @@ compile()( ...@@ -66,6 +66,7 @@ compile()(
) )
fate()( fate()(
test "$build_only" = "yes" && return
cd ${build} || return cd ${build} || return
${make} ${makeopts} -k fate ${make} ${makeopts} -k fate
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment