Skip to content

Commit 2e7e1f1

Browse files
authored
Merge branch 'test_repo_breaking_change_mlc' into remove-nvm-installation-for-automation
2 parents 5a0df1c + 89635fe commit 2e7e1f1

File tree

1,271 files changed

+25574
-28553
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,271 files changed

+25574
-28553
lines changed

.github/CODEOWNERS

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161

6262
# ServiceLabel: %Batch
6363
# PRLabel: %Batch
64-
/sdk/batch/ @jingjlii @wanghoppe @dpwatrous @NickKouds
64+
/sdk/batch/ @wiboris @wanghoppe @dpwatrous @cRui861 @skapur12
6565

6666
# PRLabel: %Communication
6767
# ServiceLabel: %Communication
@@ -243,7 +243,7 @@
243243
/sdk/openai/ @glharper @deyaaeldeen @minhanh-phan
244244

245245
# PRLabel: %AI Model Inference
246-
sdk/ai/ai-inference-rest @glharper @dargilco
246+
sdk/ai/ai-inference-rest @glharper @dargilco @jhakulin
247247

248248
# ServiceLabel: %AI Model Inference
249249
# ServiceOwners: @glharper @dargilco
@@ -387,6 +387,9 @@ sdk/ai/ai-inference-rest @glharper @dargilco
387387
# PRLabel: %Mgmt
388388
/sdk/cognitiveservices/arm-cognitiveservices/ @qiaozha @MaryGao
389389

390+
# PRLabel: %Mgmt
391+
/sdk/confidentialledger/arm-confidentialledger/ @qiaozha @MaryGao
392+
390393
# PRLabel: %Mgmt
391394
/sdk/commerce/arm-commerce/ @qiaozha @MaryGao
392395

@@ -549,6 +552,9 @@ sdk/ai/ai-inference-rest @glharper @dargilco
549552
# PRLabel: %Mgmt
550553
/sdk/healthbot/arm-healthbot/ @qiaozha @MaryGao
551554

555+
# PRLabel: %Mgmt
556+
/sdk/healthdataaiservices/arm-healthdataaiservices/ @qiaozha @MaryGao
557+
552558
# PRLabel: %Mgmt
553559
/sdk/healthcareapis/arm-healthcareapis/ @qiaozha @MaryGao
554560

.scripts/automation_generate.sh

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,35 @@
11
#!/usr/bin/env bash
2-
code-gen-pipeline --inputJsonPath=$1 --outputJsonPath=$2 --use=@autorest/typescript@^6.0.12 --typespecEmitter=@azure-tools/typespec-ts
2+
3+
cd ..
4+
5+
file_path="azure-rest-api-specs/.js/branch.txt"
6+
# Check if the file exists
7+
if [ -f "$file_path" ]; then
8+
# Load the content of the file into a variable
9+
branch=$(cat "$file_path")
10+
echo "get branch $branch"
11+
else
12+
echo "Branch file does not exist."
13+
fi
14+
15+
git clone https://github.com/Azure/azure-sdk-tools/
16+
17+
cd azure-sdk-tools
18+
if [ -z "$branch" ]; then
19+
echo 'branch is empty'
20+
else
21+
git checkout -b test $branch
22+
echo git checkout -b test $branch
23+
fi
24+
25+
echo '-------------- git status start'
26+
git status
27+
echo '-------------- git status end'
28+
29+
cd tools/js-sdk-release-tools
30+
pnpm install
31+
pnpm run build
32+
cd ../../..
33+
34+
cd azure-sdk-for-js
35+
node ../azure-sdk-tools/tools/js-sdk-release-tools/dist/autoGenerateInPipeline.js --inputJsonPath=$1 --outputJsonPath=$2 --use=@autorest/typescript@^6.0.12 --typespecEmitter=@azure-tools/typespec-ts

.scripts/automation_init.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env bash
22
npm install -g @azure-tools/typespec-client-generator-cli
33
npm install -g @microsoft/rush@5.92.0
4-
npm install -g @azure-tools/js-sdk-release-tools
4+
npm install -g pnpm

.vscode/cspell.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,10 @@
408408
"filename": "sdk/storage/storage-blob/review/storage-blob.api.md",
409409
"words": ["Uncommited"]
410410
},
411+
{
412+
"filename": "sdk/storage/storage-file-share/review/storage-file-share.api.md",
413+
"words": ["Sddl"]
414+
},
411415
{
412416
"filename": "sdk/videoanalyzer/video-analyzer-edge/review/**/*.md",
413417
"words": ["Abgr", "Argb", "Bgra", "Grpc", "Onvif", "abgr", "argb", "bgra", "onvif"]

0 commit comments

Comments
 (0)