Re: [PR] build: configure 3 retries for all gradle Download tasks [lucene]

2025-05-18 Thread via GitHub
rmuir merged PR #14653: URL: https://github.com/apache/lucene/pull/14653 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@lucene.apach

Re: [PR] build: configure 3 retries for all gradle Download tasks [lucene]

2025-05-13 Thread via GitHub
rmuir commented on code in PR #14653: URL: https://github.com/apache/lucene/pull/14653#discussion_r2086404395 ## gradle/hacks/downloader-retries.gradle: ## @@ -0,0 +1,27 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreeme

Re: [PR] build: configure 3 retries for all gradle Download tasks [lucene]

2025-05-13 Thread via GitHub
github-actions[bot] commented on PR #14653: URL: https://github.com/apache/lucene/pull/14653#issuecomment-2875511439 This PR does not have an entry in lucene/CHANGES.txt. Consider adding one. -- This is an automated message from the Apache Git Service. To respond to the message, please log

Re: [PR] build: configure 3 retries for all gradle Download tasks [lucene]

2025-05-13 Thread via GitHub
github-actions[bot] commented on PR #14653: URL: https://github.com/apache/lucene/pull/14653#issuecomment-2875512652 This PR does not have an entry in lucene/CHANGES.txt. Consider adding one. -- This is an automated message from the Apache Git Service. To respond to the message, please log

Re: [PR] build: configure 3 retries for all gradle Download tasks [lucene]

2025-05-12 Thread via GitHub
dweiss commented on PR #14653: URL: https://github.com/apache/lucene/pull/14653#issuecomment-2873830885 something like this - https://github.com/apache/lucene/blob/main/gradle/hacks/gradle-archives.gradle -- This is an automated message from the Apache Git Service. To respond to the me

Re: [PR] build: configure 3 retries for all gradle Download tasks [lucene]

2025-05-12 Thread via GitHub
dweiss commented on PR #14653: URL: https://github.com/apache/lucene/pull/14653#issuecomment-2873829504 This can be done by applying a single configuration to a task type, Rob (tasks.withType(Download).configureEach...). I'm away from the computer but will tweak it tomorrow. -- This is

[PR] build: configure 3 retries for all gradle Download tasks [lucene]

2025-05-12 Thread via GitHub
rmuir opened a new pull request, #14653: URL: https://github.com/apache/lucene/pull/14653 The default value of retries is 0. Set it to 3, to improve reliability of downloads during builds. Closes #14652 Please review, and make sure I didn't miss any `Download` tasks. The goal