-
Notifications
You must be signed in to change notification settings - Fork 61
Introduce EC variant #402
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
base: master
Are you sure you want to change the base?
Introduce EC variant #402
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR introduces support for an "EC variant" that allows running enterprise-specific mc functional tests from a separate repository. The implementation adds conditional logic to switch between upstream mc tests and EC-provided tests based on environment configuration.
- Adds
MINT_MC_VARIANTenvironment variable to select betweenmc(default) andectest variants - Modifies the test runner to conditionally execute EC tests from a mounted repository when variant is set to
ec - Updates installation script to skip upstream
mcinstallation when EC variant is selected
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
| run/core/mc/run.sh | Adds case statement to handle mc vs ec variants with configurable EC repo directory and runner script paths |
| run/core/mc/README.md | Documents the new EC variant feature including required environment variables and directory structure |
| build/mc/install.sh | Adds early exit when EC variant is selected to skip upstream mc installation |
| README.md | Adds MINT_MC_VARIANT environment variable to the main configuration table |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
This PR can go out independently. |
shtripat
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
Introduce EC variant to run specific functional tests under a separate repo.