Skip to content

Commit 23f6073

Browse files
committed
hope this works
1 parent 4512896 commit 23f6073

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/build-common.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,8 @@ jobs:
309309
const { data: workflow_run } = await github.rest.actions.listJobsForWorkflowRun({
310310
owner: context.repo.owner,
311311
repo: context.repo.repo,
312-
run_id: context.runId
312+
run_id: context.runId,
313+
per_page: 100
313314
});
314315
const matrix = JSON.parse(process.env.matrix);
315316
const job_name = `common / test${ matrix['test-partition'] } (${ matrix['test-java-version'] }, ${ matrix.vm })`;

settings.gradle.kts

+2-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ develocity {
5454
termsOfUseUrl.set("https://gradle.com/help/legal-terms-of-use")
5555
termsOfUseAgree.set("yes")
5656

57-
if (!gradle.startParameter.taskNames.contains("listTestsInPartition")) {
57+
if (!gradle.startParameter.taskNames.contains("listTestsInPartition")
58+
&& !gradle.startParameter.taskNames.contains(":test-report:reportFlakyTests")) {
5859
buildScanPublished {
5960
File("build-scan.txt").printWriter().use { writer ->
6061
writer.println(buildScanUri)

0 commit comments

Comments
 (0)