blob: 1692af15a1462e9464b55705dc449288e11dab23 [file] [log] [blame]
Brad Bishopbe861802015-11-11 13:56:17 -05001def git_describe(d):
2 return bb.process.run("git describe --dirty")[0]
3def git_tag(d):
4 return bb.process.run("git tag")[0]
5
6VERSION_ID = "${@git_tag(d)}"
7BUILD_ID = "${@git_describe(d)}"
8OS_RELEASE_FIELDS_append = " BUILD_ID"