forked from Azure/azure-rest-api-specs
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable SDK Automation V2 in CI (Azure#7548)
* Update config for SDK Automation * Update registry name * Update display name
- Loading branch information
1 parent
3b3b3b0
commit 0b3da58
Showing
3 changed files
with
66 additions
and
16 deletions.
There are no files selected for viewing
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,55 @@ | ||
trigger: | ||
batch: false | ||
branches: | ||
include: | ||
- master | ||
|
||
jobs: | ||
- job: "SDKAutomation" | ||
displayName: SDK | ||
pool: | ||
vmImage: 'Ubuntu 18.04' | ||
container: | ||
image: azopenapi.azurecr.io/openapi/sdk-automation:prod | ||
endpoint: azopenapi-registry | ||
timeoutInMinutes: 180 | ||
|
||
variables: | ||
NODE_OPTIONS: '--max-old-space-size=8192' | ||
BLOB_STORAGE_PREFIX: sdkautomation-pipeline | ||
SPEC_REPO: $(Build.Repository.Name) | ||
PR_NUMBER: $(System.PullRequest.PullRequestNumber) | ||
strategy: | ||
matrix: | ||
Net: | ||
SDK_REPO_NAME: azure-sdk-for-net | ||
Java: | ||
SDK_REPO_NAME: azure-sdk-for-java | ||
JavaScript: | ||
SDK_REPO_NAME: azure-sdk-for-js | ||
Python: | ||
SDK_REPO_NAME: azure-sdk-for-python | ||
Go: | ||
SDK_REPO_NAME: azure-sdk-for-go | ||
steps: | ||
- checkout: none | ||
- script: printenv | ||
displayName: Display ENV | ||
- script: git config --global user.email "sdkautomation@microsoft.com" && git config --global user.name "SDK Automation" | ||
displayName: Configure Git | ||
- script: | | ||
curl \ | ||
-s https://api.github.com/repos/$(Build.Repository.Name)/commits/$(Build.SourceVersion)/pulls \ | ||
-H "Accept: application/vnd.github.groot-preview+json" \ | ||
| python3 -c "import sys,json; a=json.load(sys.stdin); print(f'##vso[task.setvariable variable=PR_NUMBER]{a[0][\"number\"]}' if len(a)>0 else '##vso[task.logissue type=error]Last commit $(Build.SourceVersion) doesnot have a related PR')" | ||
displayName: Get PR_NUMBER | ||
condition: in(variables['Build.Reason'], 'IndividualCI', 'Manual') | ||
- script: sudo chown `id -ng`:`id -ng` . && npm start | ||
env: | ||
BLOB_STORAGE_NAME: $(blob-storage-name) | ||
BLOB_STORAGE_KEY: $(blob-storage-key) | ||
GITHUB_COMMENT_AUTHOR_NAME: $(github-comment-author-name) | ||
GITHUBAPP_ID: $(githubapp-id) | ||
GITHUBAPP_PRIVATE_KEY: $(githubapp-private-key) | ||
displayName: SDK Automation | ||
workingDirectory: /z |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,32 @@ | ||
{ | ||
"$schema": "https://openapistorageprod.blob.core.windows.net/sdkautomation/prod/schemas/specificationRepositoryConfiguration.schema.json", | ||
"pipelineName": "automation - sdk", | ||
"sdkRepositoryMappings": { | ||
"azure-sdk-for-go": { | ||
"mainBranch": "latest", | ||
"integrationBranchPrefix": "sdkAutomationProdTest", | ||
"generationRepository": "AzureSDKAutomation/azure-sdk-for-go", | ||
"integrationRepository": "AzureSDKAutomation/azure-sdk-for-go", | ||
"mainRepository": "test-repo-billy/azure-sdk-for-go" | ||
"mainRepository": "Azure/azure-sdk-for-go" | ||
}, | ||
"azure-sdk-for-java": { | ||
"generationRepository": "AzureSDKAutomation/azure-sdk-for-java", | ||
"mainRepository": "test-repo-billy/azure-sdk-for-java" | ||
"integrationRepository": "AzureSDKAutomation/azure-sdk-for-java", | ||
"mainRepository": "Azure/azure-sdk-for-java" | ||
}, | ||
"azure-sdk-for-js": { | ||
"generationRepository": "AzureSDKAutomation/azure-sdk-for-js", | ||
"mainRepository": "test-repo-billy/azure-sdk-for-js" | ||
"integrationRepository": "AzureSDKAutomation/azure-sdk-for-js", | ||
"mainRepository": "Azure/azure-sdk-for-js" | ||
}, | ||
"azure-sdk-for-net": { | ||
"generationRepository": "AzureSDKAutomation/azure-sdk-for-net", | ||
"mainRepository": "test-repo-billy/azure-sdk-for-net" | ||
"integrationRepository": "AzureSDKAutomation/azure-sdk-for-net", | ||
"mainRepository": "Azure/azure-sdk-for-net" | ||
}, | ||
"azure-sdk-for-python": { | ||
"generationRepository": "AzureSDKAutomation/azure-sdk-for-python", | ||
"integrationRepository": "AzureSDKAutomation/azure-sdk-for-python", | ||
"mainRepository": "test-repo-billy/azure-sdk-for-python" | ||
"mainRepository": "Azure/azure-sdk-for-python" | ||
}, | ||
"azure-sdk-for-ruby": { | ||
"mainBranch": "latest", | ||
"generationRepository": "AzureSDKAutomation/azure-sdk-for-ruby", | ||
"mainRepository": "test-repo-billy/azure-sdk-for-ruby" | ||
"integrationRepository": "AzureSDKAutomation/azure-sdk-for-ruby", | ||
"mainRepository": "Azure/azure-sdk-for-ruby" | ||
} | ||
} | ||
} |