Skip to content
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

Support RLC Changelog Generation Based on Inline Usage #8751

Merged
merged 40 commits into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
472b6c1
Support RLC Changelog Generation Based on Inline Usage
wanlwanl Aug 1, 2024
0e2560d
Fixed test
wanlwanl Aug 1, 2024
86b2040
Updated version
wanlwanl Aug 1, 2024
a16f0d8
Updated ts config
wanlwanl Aug 1, 2024
e2a1489
Update
wanlwanl Aug 1, 2024
9dc4012
Updated
wanlwanl Aug 1, 2024
ec84c88
Updated test
wanlwanl Aug 1, 2024
7fffccf
Updated for all kinds of changelog items
wanlwanl Aug 2, 2024
f15580b
Update package version
wanlwanl Aug 2, 2024
549a189
Made compatible check stricter
wanlwanl Aug 6, 2024
f451e16
Updated version to resolve pipeline issue
wanlwanl Aug 6, 2024
486aa92
Moved breaking change detection tool to js release tool
wanlwanl Aug 6, 2024
ee3c307
Removed unused file
wanlwanl Aug 6, 2024
d5b7d94
Updated CI
wanlwanl Aug 7, 2024
d91f362
Cleanup test files
wanlwanl Aug 8, 2024
db9b509
Cleaned up more test files
wanlwanl Aug 8, 2024
d71068e
Updated ApiVersionTypeExtractor
wanlwanl Aug 8, 2024
0dbd282
Merge branch 'main' into wanl/support-changelog-in-rlc
wanlwanl Aug 12, 2024
07d0555
Remove
wanlwanl Aug 12, 2024
20e6c58
Update changelogGenerator.ts
wanlwanl Aug 12, 2024
5531c71
Merge remote-tracking branch 'Azure/main' into wanl/support-changelog…
wanlwanl Aug 13, 2024
42a6407
Merge remote-tracking branch 'Azure/main' into wanl/support-changelog…
wanlwanl Aug 13, 2024
1d09c29
Merge remote-tracking branch 'Azure/main' into wanl/support-changelog…
wanlwanl Aug 14, 2024
92c9da8
Update
wanlwanl Aug 14, 2024
42446fb
debug
wanlwanl Aug 14, 2024
def3cf5
debug
wanlwanl Aug 14, 2024
aef3b35
fixed endless calls
wanlwanl Aug 14, 2024
b94e3a9
Fix recursive issue
wanlwanl Aug 15, 2024
02966da
Add Recursive test case
wanlwanl Aug 15, 2024
d41730f
Fix signature issue
wanlwanl Aug 15, 2024
95551f4
Merge remote-tracking branch 'Azure/main' into wanl/support-changelog…
wanlwanl Aug 15, 2024
4c643f8
Update CI
wanlwanl Aug 15, 2024
2f7ad47
Update gitignore
wanlwanl Aug 15, 2024
e16f54d
Move folder
wanlwanl Aug 15, 2024
1c76aea
Update version in detector
wanlwanl Aug 16, 2024
1a4bd02
.
wanlwanl Aug 16, 2024
073122d
Update
wanlwanl Aug 16, 2024
d139c08
Add lock
wanlwanl Aug 16, 2024
e09ac84
Add lock
wanlwanl Aug 19, 2024
a622d02
Add gitignore
wanlwanl Aug 19, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 6 additions & 11 deletions tools/js-sdk-release-tools/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,28 +52,23 @@ extends:
displayName: 'Install Node.js'

- script: |
npm install
displayName: 'npm install'
npm run install:all
displayName: 'npm run install:all'
workingDirectory: $(System.DefaultWorkingDirectory)/tools/js-sdk-release-tools

- script: |
npm run build
displayName: 'npm run build'
npm run build:all
wanlwanl marked this conversation as resolved.
Show resolved Hide resolved
displayName: 'npm run build:all'
workingDirectory: $(System.DefaultWorkingDirectory)/tools/js-sdk-release-tools

- script: |
npm run test
displayName: 'npm run test'
workingDirectory: $(System.DefaultWorkingDirectory)/tools/js-sdk-release-tools

- script: |
npm install
displayName: 'npm install'
workingDirectory: $(System.DefaultWorkingDirectory)/tools/js-sdk-release-tools

- script: |
npm pack
displayName: 'npm pack'
npm run pack:all
displayName: 'npm pack:all'
workingDirectory: $(System.DefaultWorkingDirectory)/tools/js-sdk-release-tools

- script: 'cp azure-tools-js-sdk-release-tools-*.tgz $(Build.ArtifactStagingDirectory)'
Expand Down
Loading