-
Notifications
You must be signed in to change notification settings - Fork 208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Avoid blocking openQA jobs on Git updates #6055
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #6055 +/- ##
=======================================
Coverage 98.98% 98.98%
=======================================
Files 395 395
Lines 39452 39492 +40
=======================================
+ Hits 39052 39092 +40
Misses 400 400 ☔ View full report in Codecov by Sentry. |
okurz
requested changes
Nov 12, 2024
Martchus
force-pushed
the
non-fatal-auto-update
branch
from
November 12, 2024 14:38
49cc25b
to
e2fc65d
Compare
okurz
approved these changes
Nov 13, 2024
kalikiana
reviewed
Nov 13, 2024
* Use `search(…)->delete` to delete tasks using a single query if possible * Use signatures in relevant functions
* Unblock openQA jobs if Git updates failed for two times * Change the behavior with `git_auto_update = yes` to be more like it was with the `fetchneedles` approach (that also did not block jobs in case of failures) * Avoid running into timeouts in openQA-in-openQA tests which expect jobs to be scheduled in a more timely manner, see https://progress.opensuse.org/issues/169204 * Keep blocking openQA jobs if any of the repositories required by the scheduled jobs was explicitly specified
* Fix "analogous" * Rewrite comment containing misspelled "referrers"
The starting point for the previous commit "Avoid blocking openQA jobs on Git updates" were network-related issues, see https://progress.opensuse.org/issues/169204. So it makes sense to limit it to network-related changes.
* Add test for old behavior (after "Avoid blocking openQA jobs on Git updates") via `git_auto_update_method = strict` * See os-autoinst#6055
Martchus
force-pushed
the
non-fatal-auto-update
branch
from
November 14, 2024 15:41
e2fc65d
to
eed9dd8
Compare
kalikiana
approved these changes
Nov 15, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
git_auto_update = yes
to be more like itwas with the
fetchneedles
approach (that also did not block jobs incase of failures)
jobs to be scheduled in a more timely manner, see
https://progress.opensuse.org/issues/169204
scheduled jobs was explicitly specified
Still a draft as I still need to restrict it to network issues.