chore: gradleがなぜかキャッシュを使ってしまうので強制的にk破棄

This commit is contained in:
usbharu 2024-09-17 22:56:31 +09:00
parent 0fe96360a9
commit 30b58c1e14
No known key found for this signature in database
GPG Key ID: 95CBCF7046307B77
2 changed files with 4 additions and 4 deletions

View File

@ -313,7 +313,7 @@ jobs:
- name: Unit Test
working-directory: owl
run: ./gradlew :koverXmlReport
run: ./gradlew :koverXmlReport --rerun-task
- name: JUnit Test Report
uses: mikepenz/action-junit-report@v4

View File

@ -55,7 +55,7 @@ subprojects {
project.gradle.taskGraph.whenReady {
if (this.hasTask(":koverGenerateArtifact")) {
val task = this.allTasks.find { println(it.name);it.name == "test" }
val task = this.allTasks.find { it.name == "test" }
val verificationTask = task as VerificationTask
verificationTask.ignoreFailures = true
}
@ -152,8 +152,8 @@ kover {
}
total {
xml {
title = "Hideout Core"
xmlFile = file("$buildDir/reports/kover/hideout-core.xml")
title = "Owl"
xmlFile = file("$buildDir/reports/kover/owl.xml")
}
filters {
excludes {