[mono][infra] Increase fullAOT LLVM CI timeout#118378
Merged
matouskozak merged 2 commits intodotnet:mainfrom Aug 5, 2025
Merged
[mono][infra] Increase fullAOT LLVM CI timeout#118378matouskozak merged 2 commits intodotnet:mainfrom
matouskozak merged 2 commits intodotnet:mainfrom
Conversation
Member
Author
|
/azp run runtime-llvm |
|
Azure Pipelines could not run because the pipeline triggers exclude this branch/path. |
Contributor
|
Tagging subscribers to this area: @akoeplinger, @matouskozak, @simonrozsival |
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR increases the timeout for Mono fullAOT LLVM CI jobs from 400 to 480 minutes (8 hours) to accommodate longer compilation times. The change addresses current timeout issues where test compilation alone takes nearly 6 hours.
Key Changes
- Timeout increase from 400 to 480 minutes for LLVM fullAOT jobs
- Applied to both RuntimeTests and RuntimeIntrinsicsTests configurations
kotlarmilos
approved these changes
Aug 5, 2025
Member
kotlarmilos
left a comment
There was a problem hiding this comment.
Instead of increasing the timeout, consider reducing the number of tests. Currently, the following test trees are being run:
testBuildArgs: >-
-tree:CoreMangLib -tree:Exceptions -tree:GC -tree:Interop -tree:Loader -tree:Regressions -tree:baseservices
-tree:ilasm -tree:ilverify -tree:managed -tree:profiler -tree:readytorun -tree:reflection -tree:tracing
-tree:JIT/BBT -tree:JIT/CodeGenBringUpTests -tree:JIT/Directed -tree:JIT/Generics -tree:JIT/IL_Conformance
-tree:JIT/Math -tree:JIT/Methodical -tree:JIT/PGO -tree:JIT/Performance -tree:JIT/Regression -tree:JIT/RyuJIT
-tree:JIT/Stress -tree:JIT/common -tree:JIT/jit64 -tree:JIT/opt -tree:JIT/superpmi
We could potentially exclude the ilasm, ilverify, readytorun, and PGO (or more) groups to reduce test execution time as they shouldn't be relevant for Mono LLVM.
This was referenced Aug 5, 2025
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
The Mono fullAOT-llvm x64 job timeout to 480 minutes. It currently takes almost 6 hours just to compile the tests

These jobs are only run as part of
runtime-llvmpipeline so it should be fine to let them run for longer but we if to be run on PRs we should consider more proper solution.