Commit 43b1af3
authored
Disable caching for KoverAgentJarTask
There are two cases where this task works:
- for the Kover tool it just copies the jar file from dependencies to the build directory
- for the JaCoCo tool it unzips the file from dependency and copies its content to the build directory
For both these cases using build cache is uneffective, since local copying and uzipping are fast itself. But using build cache inflates it, and it runs slower because the build cache performs some number of additional calculations and archiving.
Fixes #748
PR #7541 parent 7c9dd3c commit 43b1af3
File tree
1 file changed
+8
-7
lines changed- kover-gradle-plugin/src/main/kotlin/kotlinx/kover/gradle/plugin/tasks/services
1 file changed
+8
-7
lines changedLines changed: 8 additions & 7 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
8 | | - | |
| 7 | + | |
| 8 | + | |
9 | 9 | | |
10 | | - | |
11 | | - | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
12 | 13 | | |
13 | 14 | | |
14 | | - | |
15 | | - | |
| 15 | + | |
| 16 | + | |
16 | 17 | | |
17 | 18 | | |
18 | 19 | | |
19 | 20 | | |
20 | 21 | | |
21 | 22 | | |
22 | | - | |
| 23 | + | |
23 | 24 | | |
24 | 25 | | |
25 | 26 | | |
| |||
0 commit comments