-
Notifications
You must be signed in to change notification settings - Fork 114
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
Add remote cypress orchestrator integration with integtest script #988
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"schema-version": "1.0", | ||
"build": { | ||
"name": "OpenSearch Dashboards Functional Test", | ||
"version": "3.0.0" | ||
}, | ||
"ci": { | ||
"image": { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Q: how will this There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This manifest value is optional for now and serves to specify a container image where tests are run , as required by the Orchestrator caller (release workflow). It becomes relevant when we aim to ensure not only the execution of tests on specific version/artifacts but also the use of a specific image configured by the release team. The Orchestrator passes this information to the remote Cypress workflows running in the components/plugins, allowing them to align their GitHub workflows with the image provided by the Orchestrator. While not mandatory, it provides added flexibility to the Orchestrator, allowing it to dictate the container image if/when necessary. |
||
} | ||
}, | ||
"components": [ | ||
{ | ||
"name": "OpenSearch-Dashboards", | ||
"repository": "opensearch-project/OpenSearch-Dashboards", | ||
"workflow-name": "", | ||
"ref": "", | ||
"operating-system": "linux", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. os |
||
"arch": "x64", | ||
"integ-test": { | ||
"test-configs": [ | ||
"with-security", | ||
"without-security" | ||
], | ||
"additional-cluster-configs": { | ||
"vis_builder.enabled": true, | ||
"data_source.enabled": true | ||
} | ||
} | ||
} | ||
] | ||
} |
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.
check if env variable for github token if not then don't execute this.
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.
Sure! I have a follow-up PR to add manifest data to this. I'll address this one in that.