mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-01 19:57:11 +01:00
diagnosing travis build problems
This commit is contained in:
parent
d31c2f5513
commit
b88bbcf443
1 changed files with 8 additions and 0 deletions
|
@ -10,6 +10,14 @@ boolean forFDroid = hasProperty('forFDroid')
|
||||||
// Get the git revision we're using. Since fdroid modifies files as
|
// Get the git revision we're using. Since fdroid modifies files as
|
||||||
// part of its build process -dirty will always be added, confusing
|
// part of its build process -dirty will always be added, confusing
|
||||||
// users. So add that for the non-fdroid case.
|
// users. So add that for the non-fdroid case.
|
||||||
|
def TEST = "which git"
|
||||||
|
TEST = TEST.execute().text.trim()
|
||||||
|
print "TEST: ${TEST}\n"
|
||||||
|
|
||||||
|
def TEST2 = "pwd"
|
||||||
|
TEST2 = TEST2.execute().text.trim()
|
||||||
|
print "TEST2: ${TEST2}\n"
|
||||||
|
|
||||||
def GITCMD = "git describe --tags"
|
def GITCMD = "git describe --tags"
|
||||||
if (! forFDroid) {
|
if (! forFDroid) {
|
||||||
GITCMD += " --dirty"
|
GITCMD += " --dirty"
|
||||||
|
|
Loading…
Add table
Reference in a new issue