Skip to content

Commit 3ab2a12

Browse files
Fixed resetting of repos
1 parent 880a924 commit 3ab2a12

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

src/e2eTest/java/io/micrometer/release/single/SingleProjectGithubActionsE2eTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ void should_verify_generic_milestone() throws JsonProcessingException {
9696

9797
private static void runPostReleaseWorkflow() {
9898
log.info("Running post release action from tag");
99-
GithubActions.runWorkflow("post-release-workflow.yml", List.of("gh", "workflow", "run",
99+
GithubActions.runWorkflow("post-release-workflow.yml", "v0.1.1", List.of("gh", "workflow", "run",
100100
"post-release-workflow.yml", "--ref", "v0.1.1", "-f", "previous_ref_name=v0.1.0"));
101101
}
102102

src/e2eTest/java/io/micrometer/release/train/TrainGithubActionsE2eTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ void should_verify_generic_milestone(String branch) throws JsonProcessingExcepti
136136

137137
private static void runTrainPostReleaseWorkflow() {
138138
log.info("Running train release from main");
139-
GithubActions.runWorkflow("release-train-workflow.yml",
139+
GithubActions.runWorkflow("release-train-workflow.yml", "main",
140140
List.of("gh", "workflow", "run", "release-train-workflow.yml", "--ref", "main", "-f",
141141
"train_versions=0.1.1,0.2.0-M2,1.0.0-RC1", "-f", "artifact_to_check=micrometer-bom"));
142142
}

src/test/java/io/micrometer/release/common/GithubActions.java

+14-6
Original file line numberDiff line numberDiff line change
@@ -55,30 +55,38 @@ static void resetsMilestones() throws InterruptedException {
5555

5656
private static void resetMilestones() throws InterruptedException {
5757
log.info("Resetting repository state");
58-
processRunner.run("gh", "workflow", "run", "reset-milestones.yml");
59-
waitForWorkflowCompletion("reset-milestones.yml");
58+
runAndWaitResetMiestones("0.1.x");
59+
runAndWaitResetMiestones("0.2.x");
60+
runAndWaitResetMiestones("main");
6061
}
6162

62-
static void runWorkflow(String workflowName, List<String> commands) {
63+
private static void runAndWaitResetMiestones(String branch) throws InterruptedException {
64+
log.info("Resetting branch {}", branch);
65+
processRunner.run("gh", "workflow", "run", "reset-milestones.yml", "-r", branch);
66+
waitForWorkflowCompletion("reset-milestones.yml", branch);
67+
}
68+
69+
static void runWorkflow(String workflowName, String branch, List<String> commands) {
6370
log.info("Running workflow with name [{}]", workflowName);
6471
processRunner.run(commands);
6572
try {
66-
waitForWorkflowCompletion(workflowName);
73+
waitForWorkflowCompletion(workflowName, branch);
6774
}
6875
catch (InterruptedException e) {
6976
throw new IllegalStateException(e);
7077
}
7178
}
7279

73-
private static void waitForWorkflowCompletion(String workflowFile) throws InterruptedException {
80+
private static void waitForWorkflowCompletion(String workflowFile, String branch) throws InterruptedException {
7481
log.info("Waiting for workflow [{}] scheduling...", workflowFile);
7582
Thread.sleep(10_000); // Wait for the action to schedule
7683
log.info("Waiting for workflow [{}] completion...", workflowFile);
7784
boolean completed = false;
7885
int maxAttempts = 30;
7986
int attempts = 0;
8087
while (!completed && attempts < maxAttempts) { // 5 minute timeout
81-
List<String> status = processRunner.run("gh", "run", "list", "--workflow", workflowFile, "--limit", "1");
88+
List<String> status = processRunner.run("gh", "run", "list", "--workflow", workflowFile, "--branch", branch,
89+
"--limit", "1");
8290
log.info("Workflow [{}] not completed yet - attempt [{}]/[{}]", workflowFile, attempts + 1, maxAttempts);
8391
completed = status.stream().anyMatch(line -> line.contains("completed"));
8492
if (!completed) {

0 commit comments

Comments
 (0)