diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aa7d42e..62c6da6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -125,7 +125,8 @@ jobs: with: name: androidTest-minified-results path: | - test/build + test/build/outputs/androidTest-results + test/build/reports/androidTests test-benchmark: name: 'Test Benchmark' diff --git a/test/build.gradle b/test/build.gradle index a3607d6..c0df267 100644 --- a/test/build.gradle +++ b/test/build.gradle @@ -56,7 +56,7 @@ if (project.hasProperty("testingMinimizedBuild")) { tasks.register("postInferReleaseAndroidTestKeepRulesForKeeper") { doLast { def sourceFile = file("${projectDir}/test-proguard-rules.pro") - def destinationFile = file("${project.buildDir}/intermediates/keeper/releaseAndroidTest/inferredKeepRules.pro") + def destinationFile = fileTree(dir: "${project.buildDir}/intermediates/keeper", include: '**/inferredKeepRules.pro').find { true } if (sourceFile.exists() && destinationFile.exists()) { def sourceText = sourceFile.text