Skip to content

Commit 15a3237

Browse files
Added wait time to wait for circle ci
1 parent 2eecb63 commit 15a3237

File tree

4 files changed

+46
-21
lines changed

4 files changed

+46
-21
lines changed

src/main/java/io/micrometer/release/train/CircleCiChecker.java

+40-16
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515

1616
import com.fasterxml.jackson.annotation.JsonProperty;
1717
import com.fasterxml.jackson.databind.ObjectMapper;
18+
19+
import java.net.http.HttpResponse.BodyHandlers;
20+
1821
import org.slf4j.Logger;
1922
import org.slf4j.LoggerFactory;
2023

@@ -42,48 +45,69 @@ class CircleCiChecker {
4245

4346
private final String externalUrl;
4447

48+
private final int waitTimeMs;
49+
50+
private final int numberOfRetries;
51+
4552
CircleCiChecker(String circleCiToken, String githubOrgRepo, HttpClient httpClient, ObjectMapper objectMapper) {
4653
this.circleCiToken = circleCiToken;
4754
this.githubOrgRepo = githubOrgRepo;
4855
this.httpClient = httpClient;
4956
this.objectMapper = objectMapper;
5057
this.externalUrl = System.getenv("CI_URL") != null ? System.getenv("CI_URL") : CIRCLE_URL;
58+
this.waitTimeMs = 5 * 1000;
59+
this.numberOfRetries = 3;
5160
}
5261

5362
CircleCiChecker(String circleCiToken, String githubOrgRepo, HttpClient httpClient, ObjectMapper objectMapper,
54-
String externalUrl) {
63+
String externalUrl, int waitTimeMs, int numberOfRetries) {
5564
this.circleCiToken = circleCiToken;
5665
this.githubOrgRepo = githubOrgRepo;
5766
this.httpClient = httpClient;
5867
this.objectMapper = objectMapper;
5968
this.externalUrl = externalUrl;
69+
this.waitTimeMs = waitTimeMs;
70+
this.numberOfRetries = numberOfRetries;
6071
}
6172

6273
boolean checkBuildStatus(String version) throws IOException, InterruptedException {
6374
log.info("Checking CircleCI status for version: [{}]", version);
6475
String tag = "v" + version;
6576
String apiUrl = externalUrl + "project/github/" + githubOrgRepo + "/pipeline";
66-
int pageCount = 0;
67-
// Limit to 2 pages - there shouldn't be more jobs to search against
68-
while (apiUrl != null && pageCount < 2) {
69-
HttpRequest request = getCircleHttpRequest(apiUrl);
70-
HttpResponse<String> response = sendPipelineRequest(request);
71-
PipelineResponse pipelineResponse = objectMapper.readValue(response.body(), PipelineResponse.class);
72-
for (Pipeline pipeline : pipelineResponse.items()) {
73-
if (tag.equals(pipeline.vcs().tag())) {
74-
return checkWorkflowStatus(pipeline.id());
77+
log.info("Waiting for [{}] ms for the CircleCI build to appear", waitTimeMs);
78+
Thread.sleep(waitTimeMs);
79+
log.info("Will try [{}] times with wait time [{}] ms to check if the build in CircleCI appeared",
80+
numberOfRetries, waitTimeMs);
81+
for (int i = 0; i < numberOfRetries; i++) {
82+
int pageCount = 0;
83+
// Limit to 2 pages - there shouldn't be more jobs to search against
84+
while (apiUrl != null && pageCount < 2) {
85+
HttpRequest request = getCircleHttpRequest(apiUrl);
86+
PipelineResponse pipelineResponse = getPipelineResponse(request);
87+
for (Pipeline pipeline : pipelineResponse.items()) {
88+
if (tag.equals(pipeline.vcs().tag())) {
89+
return checkWorkflowStatus(pipeline.id());
90+
}
7591
}
92+
apiUrl = pipelineResponse.nextPageToken() != null
93+
? apiUrl + "?page-token=" + pipelineResponse.nextPageToken() : null;
94+
pageCount++;
95+
log.info("The tag [{}] was not found in this page, trying page [{}]", tag, pageCount);
7696
}
77-
apiUrl = pipelineResponse.nextPageToken() != null
78-
? apiUrl + "?page-token=" + pipelineResponse.nextPageToken() : null;
79-
pageCount++;
80-
log.info("The tag [{}] was not found in this page, trying page [{}]", tag, pageCount);
97+
log.info("Try [{}/{}] - no CircleCI pipeline found for tag [{}], will try again in [{}] ms", i + 1,
98+
numberOfRetries, tag, waitTimeMs);
99+
Thread.sleep(waitTimeMs);
81100
}
82101
throw new IllegalStateException("No CircleCI pipeline found for tag [" + tag + "]");
83102
}
84103

104+
private PipelineResponse getPipelineResponse(HttpRequest request) throws IOException, InterruptedException {
105+
HttpResponse<String> response = sendPipelineRequest(request);
106+
return objectMapper.readValue(response.body(), PipelineResponse.class);
107+
}
108+
85109
private HttpResponse<String> sendPipelineRequest(HttpRequest request) throws IOException, InterruptedException {
86-
return httpClient.send(request, HttpResponse.BodyHandlers.ofString());
110+
return httpClient.send(request, BodyHandlers.ofString());
87111
}
88112

89113
private boolean checkWorkflowStatus(String pipelineId) throws IOException, InterruptedException {
@@ -106,7 +130,7 @@ private boolean checkWorkflowStatus(String pipelineId) throws IOException, Inter
106130
}
107131

108132
private HttpResponse<String> sendWorkflowRequest(HttpRequest request) throws IOException, InterruptedException {
109-
return httpClient.send(request, HttpResponse.BodyHandlers.ofString());
133+
return httpClient.send(request, BodyHandlers.ofString());
110134
}
111135

112136
private HttpRequest getCircleHttpRequest(String workflowUrl) {

src/main/java/io/micrometer/release/train/DependencyVerifier.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,9 @@ private void waitForDependabotJobsToFinish(String orgRepository, String githubSe
231231
}
232232

233233
List<String> curlRuns(String orgRepository, String githubServerTime, String id) {
234-
return processRunner.run("curl", "-H", "Authorization: token " + ghToken(), "https://api.github.com/repos/"
235-
+ orgRepository + "/actions/runs?created=>" + githubServerTime + "&workflow_id=" + id);
234+
return processRunner.runSilently("curl", "-H", "Authorization: token " + ghToken(),
235+
"https://api.github.com/repos/" + orgRepository + "/actions/runs?created=>" + githubServerTime
236+
+ "&workflow_id=" + id);
236237
}
237238

238239
private String getDependabotupdatesWorkflowId(String orgRepository) {

src/test/java/io/micrometer/release/train/CircleCiCheckerTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ void should_throw_exception_when_at_least_one_workflow_step_failed() {
7171

7272
static CircleCiChecker getChecker(String status, String url) {
7373
return new CircleCiChecker("foo", "micrometer-metrics/micrometer", HttpClient.newBuilder().build(),
74-
new ObjectMapper().configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false), url) {
74+
new ObjectMapper().configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false), url, 1, 1) {
7575
@Override
7676
Builder requestBuilder(String workflowUrl) {
7777
return super.requestBuilder(workflowUrl).header("Test-Status", status);

src/test/java/io/micrometer/release/train/DependencyVerifierTests.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ ProcessRunner processRunnerForBranch(File clonedRepo) {
9393
@BeforeEach
9494
void setup() throws URISyntaxException, IOException {
9595
given(processRunner.run(dependabotUpdateJobsIds)).willReturn(List.of("1234"));
96-
given(processRunner.run(dependabotUpdateJobStates)).willReturn(Files
96+
given(processRunner.runSilently(dependabotUpdateJobStates)).willReturn(Files
9797
.readAllLines(new File(DependencyVerifierTests.class.getResource("/github/runs.json").toURI()).toPath()));
9898
given(processRunner.run(dependabotUpdateJobTime)).willReturn(List.of("2025-02-24T10:51:29Z"));
9999
}
@@ -136,7 +136,7 @@ void should_fail_when_no_dependabot_jobs_present() {
136136
@Test
137137
@SuppressWarnings("unchecked")
138138
void should_fail_when_dependabot_jobs_are_not_successful() {
139-
given(processRunner.run(dependabotUpdateJobStates)).willReturn(List.of("", """
139+
given(processRunner.runSilently(dependabotUpdateJobStates)).willReturn(List.of("", """
140140
{
141141
"total_count": 15,
142142
"workflow_runs": [

0 commit comments

Comments
 (0)