mirror of
https://github.com/corda/corda.git
synced 2024-12-20 05:28:21 +00:00
TM-89 fixing double archiving and misleading log (#5698)
This commit is contained in:
parent
71af7ad7cb
commit
7f3260e1b3
@ -211,6 +211,8 @@ public class KubesTest extends DefaultTask {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
int podNumber = podIdx + 1;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
// pods might die, so we retry
|
// pods might die, so we retry
|
||||||
return Retry.fixed(numberOfRetries).run(() -> {
|
return Retry.fixed(numberOfRetries).run(() -> {
|
||||||
@ -247,14 +249,10 @@ public class KubesTest extends DefaultTask {
|
|||||||
File podOutput = executeBuild(namespace, numberOfPods, podIdx, podName, podLogsDirectory, printOutput, stdOutOs, stdOutIs, errChannelStream, waiter);
|
File podOutput = executeBuild(namespace, numberOfPods, podIdx, podName, podLogsDirectory, printOutput, stdOutOs, stdOutIs, errChannelStream, waiter);
|
||||||
|
|
||||||
int resCode = waiter.join();
|
int resCode = waiter.join();
|
||||||
getProject().getLogger().lifecycle("build has ended on on pod " + podName + " (" + podIdx + "/" + numberOfPods + ") with result " + resCode + " , gathering results");
|
getProject().getLogger().lifecycle("build has ended on on pod " + podName + " (" + podNumber + "/" + numberOfPods + ") with result " + resCode + " , gathering results");
|
||||||
Collection<File> binaryResults = downloadTestXmlFromPod(namespace, createdPod);
|
Collection<File> binaryResults = downloadTestXmlFromPod(namespace, createdPod);
|
||||||
getLogger().lifecycle("removing pod " + podName + " (" + podIdx + "/" + numberOfPods + ") after completed build");
|
getLogger().lifecycle("removing pod " + podName + " (" + podNumber + "/" + numberOfPods + ") after completed build");
|
||||||
|
|
||||||
File logFileToArchive = new File(podLogsDirectory, podName + ".log");
|
|
||||||
try (FileInputStream logIn = new FileInputStream(podOutput); FileOutputStream logOut = new FileOutputStream(logFileToArchive)) {
|
|
||||||
IOUtils.copy(logIn, logOut);
|
|
||||||
}
|
|
||||||
try (KubernetesClient client = getKubernetesClient()) {
|
try (KubernetesClient client = getKubernetesClient()) {
|
||||||
client.pods().delete(createdPod);
|
client.pods().delete(createdPod);
|
||||||
client.persistentVolumeClaims().delete(pvc);
|
client.persistentVolumeClaims().delete(pvc);
|
||||||
@ -267,7 +265,7 @@ public class KubesTest extends DefaultTask {
|
|||||||
return new KubePodResult(podIdx, resCode, podOutput, binaryResults);
|
return new KubePodResult(podIdx, resCode, podOutput, binaryResults);
|
||||||
});
|
});
|
||||||
} catch (Retry.RetryException e) {
|
} catch (Retry.RetryException e) {
|
||||||
throw new RuntimeException("Failed to build in pod " + podName + " (" + podIdx + "/" + numberOfPods + ") in " + numberOfRetries + " attempts", e);
|
throw new RuntimeException("Failed to build in pod " + podName + " (" + podNumber + "/" + numberOfPods + ") in " + numberOfRetries + " attempts", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user