[build] Add combined test meta-task (#5813)

This commit is contained in:
Ryan Blue
2023-10-24 02:35:44 -04:00
committed by GitHub
parent 63ef585d4b
commit 928e87b4f4
4 changed files with 26 additions and 6 deletions

View File

@@ -0,0 +1,7 @@
apply from: "${rootDir}/shared/cppDesktopTestTask.gradle"
apply from: "${rootDir}/shared/javaDesktopTestTask.gradle"
tasks.register('testDesktop') {
dependsOn testDesktopJava
dependsOn testDesktopCpp
}