[workflows] Add support for extended tests via a label#101
Draft
lumachad wants to merge 2 commits intoamd-stagingfrom
Draft
[workflows] Add support for extended tests via a label#101lumachad wants to merge 2 commits intoamd-stagingfrom
lumachad wants to merge 2 commits intoamd-stagingfrom
Conversation
53b9c06 to
9de4799
Compare
Make the test workflow a reusable template by adding test_options. This allows running tests with different configurations (e.g., --parallel, --optimization, --check-type) without creating separate workflow files. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Add support for triggering extended test suite when testing:extended label is added to a PR. Five additional test jobs run serially after the standard build, each with different test options: --parallel, --optimization=-O3, --check-type check-read1, --check-type check-readmore, and a HIP board test with --runtestflags=--target_board=hip --tests gdb.base/break.exp. Extended test jobs use `if: success() || failure()` to ensure all tests run even if one fails, while still showing which tests failed in the UI. This provides complete test coverage on demand without slowing down the standard CI pipeline. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9de4799 to
40ce9e5
Compare
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.
Add configurable test options to therock-test-packages workflow
Make the test workflow a reusable template by adding test_options.
This allows running tests with different configurations (e.g., --parallel,
--optimization, --check-type) without creating separate workflow files.
Add extended testing support with testing:extended label
Add support for triggering extended test suite when testing:extended label
is added to a PR. Five additional test jobs run serially after the standard
build, each with different test options: --parallel, --optimization=-O3,
--check-type check-read1, --check-type check-readmore, and a HIP board test
with --runtestflags=--target_board=hip --tests gdb.base/break.exp.
Extended test jobs use
if: success() || failure()to ensure all tests runeven if one fails, while still showing which tests failed in the UI. This
provides complete test coverage on demand without slowing down the standard
CI pipeline.