[gradle] Add 'sinttestAll' task

This commit is contained in:
Florian Schmaus 2020-05-26 09:54:06 +02:00
parent 10c6e5d121
commit eae8acb856
1 changed files with 8 additions and 0 deletions

View File

@ -662,6 +662,14 @@ task omemoSignalIntTest {
dependsOn project(':smack-omemo-signal-integration-test').tasks.run
}
task sinttestAll {
description 'Run all of Smack\'s integration tests.'
dependsOn {[
integrationTest,
omemoSignalIntTest,
]}
}
def getGitCommit() {
def dotGit = new File("$projectDir/.git")
if (!dotGit.isDirectory()) return 'non-git build'