Changed build_unstable to build_status

This commit is contained in:
Marcin Grzejszczak
2019-07-23 12:28:13 +02:00
parent 1a0833b2d8
commit 940e7ec2ee

View File

@@ -70,6 +70,7 @@ public class ReleaserApplication implements CommandLineRunner {
throw th;
}
}
handleStableBuild();
System.exit(0);
}
@@ -81,11 +82,11 @@ public class ReleaserApplication implements CommandLineRunner {
"[BUILD UNSTABLE] The release happened successfully, but there were post release issues");
log.error("[BUILD UNSTABLE] An exception that should make "
+ "the build unstable occurred. Will not throw an exception.");
File buildUnstable = new File("build_unstable");
File buildStatus = new File("build_status");
try {
buildUnstable.createNewFile();
buildStatus.createNewFile();
String text = "[BUILD UNSTABLE] The release happened successfully, but there were post release issues";
Files.write(buildUnstable.toPath(), text.getBytes());
Files.write(buildStatus.toPath(), text.getBytes());
}
catch (IOException e) {
throw new IllegalStateException(
@@ -93,4 +94,20 @@ public class ReleaserApplication implements CommandLineRunner {
}
}
private void handleStableBuild() {
File buildStatus = new File("build_status");
if (buildStatus.exists()) {
log.info("Build status file has already been created!");
return;
}
try {
buildStatus.createNewFile();
String text = "[BUILD STABLE] All the release steps have been successfully executed!";
Files.write(buildStatus.toPath(), text.getBytes());
}
catch (IOException e) {
log.info("Failed to store the file but the build was stable");
}
}
}