ntel-gpu-tools/scripts/intel-gfx-trybot
Chris Wilson ea7dac11b7 scripts: Add a simple trybot driver
Basic script that may prove useful to others to send a pile of patches
to intel-gfx-trybot@

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-04-22 08:28:16 +01:00

14 lines
267 B
Bash
Executable File

#!/bin/sh
COMMIT=$1
INTEL=intel
DIN=${INTEL}/drm-intel-nightly
git fetch ${INTEL}
git merge-base --is-ancestor ${DIN} ${COMMIT} || {
echo Tree is out of date
exit 1
}
git send-email --to intel-gfx-trybot@lists.freedesktop.org --suppress-cc=all ${DIN}..${COMMIT}