vpx/scripts/av1_conf_build.sh
Yi Luo 8f6cf4f2c4 Fixed: the nightly_config.sh was not called
- Make the display more clean.

Change-Id: I94698655e9b81b0927f763ed80e6fcd6ee140bb0
2017-07-25 14:11:06 -07:00

21 lines
376 B
Bash
Executable File

#!/bin/sh
root_dir=$1
build_dir=$root_dir/release
script_dir=~/Dev/sandbox/libvpx/scripts
exp_tool=experimental
cd $build_dir
make clean > /dev/null
$script_dir/nightly_config.sh $exp_tool
make -j > /dev/null
if [ $? -ne 0 ]; then
echo "AV1 build failed on experiment: " $exp_tool
exit 1
fi
test_dir=~/Dev/nightly
cp -f ./aomenc $test_dir/.
cp -f ./aomdec $test_dir/.