mirror of
git://git.yoctoproject.org/yocto-autobuilder-helper.git
synced 2025-07-19 20:59:02 +02:00
436 B
Executable File
436 B
Executable File
#!/bin/bash WORKDIR=$1 DEST=$2 target=$3
RESFILE=$WORKDIR/tmp/log/oeqa/testresults.json
if [ -e $RESFILE ]; then mkdir -p $DEST/$target cp $WORKDIR/tmp/log/oeqa/testresults.json $DEST/$target/ fi
if [ -e $WORKDIR/buildhistory ]; then mkdir -p $DEST/$target # ab-fetchrev tag set in buildhistory-init $WORKDIR/../scripts/buildhistory-diff -p $WORKDIR/buildhistory ab-fetchrev > $DEST/$target/buildhistory.txt fi