mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-08 16:36:14 +00:00
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>
14 lines
267 B
Bash
Executable File
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}
|