Added CI documentation (#16129)

This commit is contained in:
Ilya Churaev
2023-03-07 12:55:36 +04:00
committed by GitHub
parent 0dad7749b5
commit 4cea80915d
3 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# Enabling tests in OpenVINO CI
Each component contains own documentation for writing and extending tests.
If you want to get more information about it please read the documentation for interested [component](../../src/README.md).
This guide oversees existed OpenVINO CIs.
OpenVINO has two types of public CIs: [Azure](../../.ci/azure) and [Github actions](../../.github/workflows).
* [Github actions](../../.github/workflows) is used for documentation build and additional checks.
* [Azure](../../.ci/azure) is used for public build on different platforms. If you need to run tests from new binary files, you can add it to these configuration files.
## See Also
* [OpenVINO README](../../README.md)
* [OpenVINO Developer Documentation](./index.md)

View File

@@ -12,6 +12,7 @@ Explore other resources to learn more about OpenVINO:
* [OpenVINO contributing guidelines](../../CONTRIBUTING.md)
* [OpenVINO conditional compilation](./conditional_compilation.md)
* [OpenVINO Tutorials](../../README.md#tutorials)
* [Enabling tests in OpenVINO CI](./enable_ci_step.md)
## See also
* [OpenVINO Developer Documentation](./index.md)

View File

@@ -63,6 +63,7 @@ flowchart LR
* [Add new transformation](#todo)
* [Get code coverage report](./test_coverage.md)
* [Add component developer documentation](./dev_doc_guide.md)
* [Enabling tests in OpenVINO CI](./enabling_ci_step.md)
* [OpenVINO contributing guidelines](../../CONTRIBUTING.md)
* [OpenVINO debug capabilities](./debug_capabilities.md)
@@ -112,4 +113,5 @@ ov_component/ // Component folder
## See Also
* [OpenVINO Developer Documentation](./index.md)
* [OpenVINO README](../../README.md)