-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support Modular Auto Generation (#8906)
* Add script for generating modular client * Update * wip * WIP * wip: remove sync call * Done: modular client SDK automation * WIP * WIP * minor fixes * Updated package.json * Improve log * Removed former files * Fixed typo * Added timeout for runCommand * Updated * Improved logs * Only run node test * Removed len == 1 array * Updated package version * Fixed template not found bug * Update build script * Updated package.json * Fixed sdk type bug * Fixed no throw issue * Fix * Update package.json * Update lock file * Update * a * a * Revert "a" This reverts commit 8d3535c. * Revert "a" This reverts commit fcb860a. * debug * Revert "debug" This reverts commit f7d0eb9. * Remove dup code * Fix merge conflict * Update * Normalize path * Update apiViewArtifact declaration * Update path * Workaround to pass pipeline * Update mgitignore * Update api view json * Remove * Update logger * . * Remove useless log * . * Comment * Add debug info * . * Silent log * Debug * Copy api view to somewhere else to avoid clean up by npm script * . * Cleanup * Update rush script * Update rush script * Add missing package * chore: Remove shx dependency and update npm packages * Update CI creator * Add log * Update * Update MC check * Update log level * Support emitter 0.32 in api version extraction * Change temp folder location * Add log * Add debug info * Fix package info * Fix * Improve logging * Update logging * . * Update logging * Update log * RLC update * Simplify * Add default package name * Fix runCommand * Fix parameters finding * Fix run command issue * Fix runCommand issue * Improve logging * Add error keyword * WIP on wanl/generate-mlc-in-pipeline * . * WIP * Test sdk generation path * Fix original package version restore * . * cleanup * Update version * Update package.json
- Loading branch information
Showing
36 changed files
with
2,067 additions
and
516 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
33 changes: 33 additions & 0 deletions
33
tools/js-sdk-release-tools/src/common/ciYamlTemplates/ci.mgmt.template.yml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# NOTE: Please refer to https://aka.ms/azsdk/engsys/ci-yaml before editing this file. | ||
|
||
trigger: | ||
branches: | ||
include: | ||
- main | ||
- feature/* | ||
- release/* | ||
- hotfix/* | ||
exclude: | ||
- feature/v4 | ||
paths: | ||
include: null | ||
|
||
pr: | ||
branches: | ||
include: | ||
- main | ||
- feature/* | ||
- release/* | ||
- hotfix/* | ||
exclude: | ||
- feature/v4 | ||
paths: | ||
include: null | ||
|
||
extends: | ||
template: /eng/pipelines/templates/stages/archetype-sdk-client.yml | ||
parameters: | ||
ServiceDirectory: null | ||
Artifacts: | ||
- name: null | ||
safeName: null |
Oops, something went wrong.