Skip to content

Commit 1542cac

Browse files
committed
Revert "Try to fix windows build flake by disabling caching"
This reverts commit 13501f2.
1 parent 13501f2 commit 1542cac

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

jetbrains-rider/build.gradle.kts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,8 +281,6 @@ tasks.test {
281281
useTestNG()
282282
environment("LOCAL_ENV_RUN", true)
283283
maxHeapSize = "1024m"
284-
285-
outputs.cacheIf { false }
286284
}
287285

288286
tasks.integrationTest {
@@ -293,4 +291,11 @@ tasks.integrationTest {
293291
// test detection is broken for tests inheriting from JB test framework: https://youtrack.jetbrains.com/issue/IDEA-278926
294292
setScanForTestClasses(false)
295293
include("**/*Test.class")
294+
295+
ciOnly {
296+
// disable retries so that logs aren't overwritten
297+
retry {
298+
maxRetries.set(0)
299+
}
300+
}
296301
}

0 commit comments

Comments
 (0)