Created
November 5, 2014 07:26
-
-
Save rishabhmhjn/3a51828ae2cd9c1f19bc to your computer and use it in GitHub Desktop.
Executing shell commands and getting output in gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def getVersionName = { -> | |
def hashStdOut = new ByteArrayOutputStream() | |
exec { | |
commandLine "git", "rev-parse", "--short", "HEAD" | |
standardOutput = hashStdOut | |
} | |
def buildNumberStdOut = new ByteArrayOutputStream() | |
exec { | |
commandLine 'echo', "$BUILD_NUMBER" | |
standardOutput = buildNumberStdOut | |
} | |
return buildNumberStdOut.toString().trim() + '-' + hashStdOut.toString().trim() | |
} | |
def getVersionName2() { | |
return "echo $BUILD_NUMBER".execute().text.trim() + | |
"-" + | |
"git rev-parse --short HEAD".execute().text.trim() | |
} | |
task printGitVersionName { | |
doLast { | |
println getVersionName() | |
println getVersionName2() | |
} | |
} | |
// execute as "./gradlew -q printGitVersionName -PBUILD_NUMBER=457" |
Thank you!
Very useful example! Thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thx.
恍然大悟