[#734] Emulator.wtf Gradle Plugin 0.0.15
This will provide caching for our automated tests. I have disabled the cache for the screenshot tests, since those are sometimes flaky.
This commit is contained in:
parent
d958d6d13a
commit
721003b6e7
|
@ -159,7 +159,7 @@ org.ow2.asm:asm-util:9.2=runtimeClasspath
|
|||
org.ow2.asm:asm:9.2=compileClasspath,runtimeClasspath
|
||||
org.slf4j:slf4j-api:1.7.30=runtimeClasspath
|
||||
org.tensorflow:tensorflow-lite-metadata:0.1.0-rc2=runtimeClasspath
|
||||
wtf.emulator:gradle-plugin:0.0.12=compileClasspath,runtimeClasspath
|
||||
wtf.emulator:gradle-plugin:0.0.15=compileClasspath,runtimeClasspath
|
||||
xerces:xercesImpl:2.12.0=runtimeClasspath
|
||||
xml-apis:xml-apis:1.4.01=runtimeClasspath
|
||||
empty=annotationProcessor,kotlinScriptDefExtensions
|
||||
|
|
|
@ -163,7 +163,7 @@ org.ow2.asm:asm-util:9.2=classpath
|
|||
org.ow2.asm:asm:9.2=classpath
|
||||
org.slf4j:slf4j-api:1.7.30=classpath
|
||||
org.tensorflow:tensorflow-lite-metadata:0.1.0-rc2=classpath
|
||||
wtf.emulator:gradle-plugin:0.0.12=classpath
|
||||
wtf.emulator:gradle-plugin:0.0.15=classpath
|
||||
xerces:xercesImpl:2.12.0=classpath
|
||||
xml-apis:xml-apis:1.4.01=classpath
|
||||
xmlpull:xmlpull:1.1.3.1=classpath
|
||||
|
|
|
@ -104,7 +104,7 @@ ANDROID_NDK_VERSION=23.0.7599858
|
|||
|
||||
ANDROID_GRADLE_PLUGIN_VERSION=7.4.0
|
||||
DETEKT_VERSION=1.21.0
|
||||
EMULATOR_WTF_GRADLE_PLUGIN_VERSION=0.0.12
|
||||
EMULATOR_WTF_GRADLE_PLUGIN_VERSION=0.0.15
|
||||
FLANK_VERSION=23.01.0
|
||||
FULLADLE_VERSION=0.17.4
|
||||
GRADLE_VERSIONS_PLUGIN_VERSION=0.42.0
|
||||
|
|
|
@ -87,4 +87,9 @@ dependencies {
|
|||
|
||||
emulatorwtf {
|
||||
directoriesToPull.set(listOf("/sdcard/googletest/test_outputfiles"))
|
||||
}
|
||||
|
||||
// Because screenshot tests can be flaky, allow this module to always re-run
|
||||
// which is helpful on GitHub Actions. Once the tests are fully stabilized, this can be
|
||||
// removed.
|
||||
sideEffects.set(true)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue