[#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:
Carter Jernigan 2023-01-24 06:26:43 -05:00 committed by GitHub
parent d958d6d13a
commit 721003b6e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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)
}