ci: run rusts tests in nightly dispatcher#3226
Merged
Merged
Conversation
Alenar
force-pushed
the
djo/3206/ci/run-tests-in-nightly
branch
3 times, most recently
from
April 24, 2026 16:14
9779e57 to
6b5d2ad
Compare
Alenar
marked this pull request as ready for review
April 24, 2026 16:23
So it can be reused in the nightly dispatcher
and not by the nightly dispatcher (to avoid storing more value), but it can leverage the cache saved by the `ci.yml` runs.
Alenar
force-pushed
the
djo/3206/ci/run-tests-in-nightly
branch
from
April 27, 2026 08:19
6b5d2ad to
5fd6f33
Compare
So everything is in-line with previous naming which was `test-something`, not `something-tests`.
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.
Content
This PR includes our rust tests suite into the nightly dispatcher.
This is made by extracting the tests run code from the
ci.ymlinto a newrust-tests.ymlworkflow so the same test suite / matrix is run in both case.The
rust-tests.ymlworkflow have two parameters:include-slow-tests: boolean, control all slow tests must be run regardless of the source code change (true for nightly dispatcher, true forciif therun-slow-testslabel is set)never-save-cache: force thetool-chain-and-cachecomposite action to not save cache (true for nightly dispatcher, false forci), this is to prevent the nightly dispatcher from saving cache as we are already near the Github limitPre-submit checklist
Issue(s)
Relates to #3206