ci(felix): raise Ubuntu 25.10 FV job timeouts to 75 minutes#12963
Open
electricjesus wants to merge 1 commit into
Open
ci(felix): raise Ubuntu 25.10 FV job timeouts to 75 minutes#12963electricjesus wants to merge 1 commit into
electricjesus wants to merge 1 commit into
Conversation
The two Ubuntu 25.10 jobs (netkit and jitharden=2) run the BPF UT suite on their test VMs, and the ut batch (VM setup + build + ~29min test run) now overruns the watchdog budget of (JOB_TIMEOUT_MINUTES - 5) minutes. The suite itself passes; the watchdog fires while it is still finishing. Raise both jobs to 75 minutes so the batch budget rises from 55 to 70 minutes.
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adjusts Semaphore CI timeouts for the two Felix FV jobs that run Ubuntu 25.10 BPF tests (netkit + jitharden=2) so the run-tests-on-vms watchdog no longer terminates the long-running ut batch during VM provisioning/build overhead.
Changes:
- Increase
execution_time_limitfrom 60 to 75 minutes for the two Ubuntu 25.10 Felix BPF FV jobs. - Increase
JOB_TIMEOUT_MINUTESfrom 60 to 75 minutes for the same jobs, raising the watchdog budget from 55 to 70 minutes. - Regenerate the derived Semaphore pipeline YAMLs to reflect the template change.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .semaphore/semaphore.yml.d/blocks/20-felix.yml | Raises job execution_time_limit and JOB_TIMEOUT_MINUTES to 75 for the two Ubuntu 25.10 Felix BPF FV jobs. |
| .semaphore/semaphore.yml | Regenerated pipeline reflecting the updated Ubuntu 25.10 Felix FV job timeouts. |
| .semaphore/semaphore-scheduled-builds.yml | Regenerated scheduled-build pipeline reflecting the updated Ubuntu 25.10 Felix FV job timeouts. |
This file contains hidden or 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
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.
Both Ubuntu 25.10 Felix FV jobs (netkit and jitharden=2) run the BPF UT suite on their test VMs, and the
utbatch has started tripping therun-tests-on-vmswatchdog, which kills batches at(JOB_TIMEOUT_MINUTES - 5) * 60= 3300s. The UT suite itself passes (2778 tests in roughly 29 minutes once it starts); the remaining budget goes to VM provisioning and themake ut-bpf-no-prereqsbuild, and the total now sits right at the line. Two recent master runs failed this way with "Batch ut timed out after 3300s" and zero test failures, one on each of the two jobs.This raises
execution_time_limitandJOB_TIMEOUT_MINUTESfrom 60 to 75 minutes for both jobs, lifting the batch budget from 55 to 70 minutes. Template change in.semaphore/semaphore.yml.d/blocks/20-felix.ymlplus the regenerated YAMLs. Infrastructure-only change, no test to add.The same timeout is also being applied to the enterprise fork, where the jitharden job fails the same way.
Release note: