mirror of
https://github.com/apple/pkl.git
synced 2026-03-31 14:13:15 +02:00
Add Gradle task "testNative"
Support running native tests with "gw testNative" for consistency with "gw test".
This commit is contained in:
committed by
Philip K.F. Hölzenspies
parent
a49526649d
commit
c3473cc626
@@ -1,6 +1,10 @@
|
||||
val assembleNative by tasks.registering {}
|
||||
|
||||
val checkNative by tasks.registering {}
|
||||
val testNative by tasks.registering {}
|
||||
|
||||
val checkNative by tasks.registering {
|
||||
dependsOn(testNative)
|
||||
}
|
||||
|
||||
val buildNative by tasks.registering {
|
||||
dependsOn(assembleNative, checkNative)
|
||||
|
||||
Reference in New Issue
Block a user