mirror of
https://git.yoctoproject.org/poky
synced 2026-09-15 06:49:33 +02:00
classes/buildhistory: add hostname to commit message
If we're building on multiple hosts then it's useful to have the hostname in the commit message. (From OE-Core rev: abf3e7f7f56cc8bcdf104d8e27e7e366b0619ed6) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
fcc5f6883c
commit
c8d4807bd7
@@ -356,7 +356,8 @@ buildhistory_commit() {
|
|||||||
repostatus=`git status --porcelain`
|
repostatus=`git status --porcelain`
|
||||||
if [ "$repostatus" != "" ] ; then
|
if [ "$repostatus" != "" ] ; then
|
||||||
git add ${BUILDHISTORY_DIR}/*
|
git add ${BUILDHISTORY_DIR}/*
|
||||||
git commit ${BUILDHISTORY_DIR}/ -m "Build ${BUILDNAME} for machine ${MACHINE} configured for ${DISTRO} ${DISTRO_VERSION}" --author "${BUILDHISTORY_COMMIT_AUTHOR}" > /dev/null
|
HOSTNAME=`cat /etc/hostname 2>/dev/null || echo unknown`
|
||||||
|
git commit ${BUILDHISTORY_DIR}/ -m "Build ${BUILDNAME} of ${DISTRO} ${DISTRO_VERSION} for machine ${MACHINE} on $HOSTNAME" --author "${BUILDHISTORY_COMMIT_AUTHOR}" > /dev/null
|
||||||
if [ "${BUILDHISTORY_PUSH_REPO}" != "" ] ; then
|
if [ "${BUILDHISTORY_PUSH_REPO}" != "" ] ; then
|
||||||
git push -q ${BUILDHISTORY_PUSH_REPO}
|
git push -q ${BUILDHISTORY_PUSH_REPO}
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user