This is the repository used to host tools and libraries used by Azure SDK team engineering system. We allow to create tools in any language suitable for the tools. For every newly developing tool, create a new folder with brief description on its name. Do not add third party tools directly in your folder, use it as dependencies.
See language specific guidelines:
Add code owner in CODEOWNERS with following format:
/tools/<tool-name>/ @owner1 @owner2
- Add README.md file for every tool to illustrate:
- The purpose of the tool.
- Prerequisites before use.
- How to use, test and maintain the tool locally and remotely.
- Better to include where the tool is being used.
- Example: README.md
- Add tool details to the index in root README.md.
Provide certain test cases to cover important workflow, especially on how it gets used in azure pipelines or running in prod.
Example: Test library
If there is any bundle script, do provide end-to-end test on script as well.
Example: Custom Test on ci.yml
- For the tool which is publishing to public repository, do provide ci.yml for building, testing and releasing.
Example: ci.yml
- Pipelines should use common templates from
eng/pipelines/templates
.
The naming convention of the pipelines: tools - <tool-name> - ci
for the public builds and tools - <tool-name>
for internal builds.
- Use internal builds for releasing steps, and conditioning those steps similar to https://github.com/Azure/azure-sdk-tools/blob/main/eng/pipelines/templates/stages/archetype-sdk-tool-dotnet.yml#L89. TODO: Will define release template for tools in other languages