Skip to content

Commit c22d8b9

Browse files
fix cleanup for compatibility check task (#298)
* fix cleanup of verifier task * increase number of version verified in one iteration back to 5 --------- Signed-off-by: Cmarada, Michal <michal.cmarada@pantheon.tech>
1 parent 3daf614 commit c22d8b9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

intelij-plugin/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ dependencies {
5454
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: jupiterEngineVersion
5555
}
5656

57-
final MAX_VERIFIER_NUMBER = 1
57+
final MAX_VERIFIER_NUMBER = 5
5858
def counter = 0
5959
ext.ideaVersions = new ArrayList<String>()
6060

@@ -69,6 +69,7 @@ def makeCommand() {
6969
}
7070
commandBuilder.append("\n")
7171
commandBuilder.append("rm -rf /home/runner/.pluginVerifier\n")
72+
commandBuilder.append("rm -rf /home/runner/.cache\n")
7273
return commandBuilder
7374
}
7475

0 commit comments

Comments
 (0)