Skip to content

Commit 3d5d6ab

Browse files
Uncomments e2e tests
1 parent 1144796 commit 3d5d6ab

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

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

-2
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,13 @@
1818
import com.fasterxml.jackson.core.JsonProcessingException;
1919
import io.micrometer.release.common.GithubActions;
2020
import org.junit.jupiter.api.BeforeAll;
21-
import org.junit.jupiter.api.Disabled;
2221
import org.junit.jupiter.api.Test;
2322

2423
import java.time.LocalDate;
2524
import java.util.List;
2625

2726
import static org.assertj.core.api.Assertions.assertThat;
2827

29-
@Disabled("TODO: Remove me")
3028
class SingleProjectGithubActionsE2eTests implements GithubActions {
3129

3230
@BeforeAll

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

+6-4
Original file line numberDiff line numberDiff line change
@@ -134,12 +134,14 @@ void should_verify_generic_milestone(String branch) throws JsonProcessingExcepti
134134
assertThat(closedIssues).isEmpty();
135135
}
136136

137+
/**
138+
* Not adding context propagation versions because dependabot is going nuts about the
139+
* test repository.
140+
*/
137141
private static void runTrainPostReleaseWorkflow() {
138142
log.info("Running train release from main");
139-
GithubActions.runWorkflow("release-train-workflow.yml", "main",
140-
List.of("gh", "workflow", "run", "release-train-workflow.yml", "--ref", "main", "-f",
141-
"context_propagation_versions=1.1.2,1.1.2,1.1.2", "-f",
142-
"micrometer_versions=0.1.1,0.2.0-M2,1.0.0-RC1"));
143+
GithubActions.runWorkflow("release-train-workflow.yml", "main", List.of("gh", "workflow", "run",
144+
"release-train-workflow.yml", "--ref", "main", "-f", "micrometer_versions=0.1.1,0.2.0-M2,1.0.0-RC1"));
143145
}
144146

145147
private static LocalDate calculateDueDate(LocalDate now) {

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ private CompletableFuture<Void> checkMavenCentralWithRetries(String version, Pro
7474
CompletableFuture<Void> future = new CompletableFuture<>();
7575
String mavenUrl = externalUrl + projectSetup.artifactToCheck() + "/" + version + "/";
7676
log.info(
77-
"Starting Maven Central sync check for version: [{}] and url [{}]. Will check for the artifact every [{}] seconds for at most [{}] seconds",
77+
"Starting Maven Central sync check for version: [{}] and url [{}]. Will check for the artifact every [{}] ms for at most [{}] ms",
7878
version, mavenUrl, pollIntervalInMs, maxWaitTimeInMs);
7979
long startTime = System.currentTimeMillis();
8080
long maxWaitTimeMillis = TimeUnit.SECONDS.toMillis(maxWaitTimeInMs);

0 commit comments

Comments
 (0)