Skip to content

chore: removes the CLI generation #1368

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

Merged
merged 1 commit into from
Jul 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
80 changes: 0 additions & 80 deletions .azure-pipelines/generation-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,6 @@ resources:
endpoint: microsoftgraph (22)
name: microsoftgraph/msgraph-beta-sdk-python
ref: main
- repository: msgraph-cli
type: github
endpoint: microsoftgraph (22)
name: microsoftgraph/msgraph-cli
ref: main
- repository: msgraph-beta-cli
type: github
endpoint: microsoftgraph (22)
name: microsoftgraph/msgraph-beta-cli
ref: main
- repository: msgraph-metadata
type: github
endpoint: microsoftgraph (22)
Expand Down Expand Up @@ -704,76 +694,6 @@ stages:
repoName: msgraph-beta-sdk-python
baseDirectory: msgraph_beta

- stage: stage_cli_v1_kiota
dependsOn:
- stage_build_and_publish_kiota
- stage_v1_openapi
condition: |
and
(
eq(dependencies.stage_build_and_publish_kiota.result, 'Succeeded'),
in(dependencies.stage_v1_openapi.result, 'Succeeded', 'Skipped')
)
jobs:
- job: cli_v1_kiota
timeoutInMinutes: 60
pool:
name: 1es-ubuntu-latest-ado-cli-mem
os: linux
steps:
- template: generation-templates/language-generation-kiota.yml
parameters:
language: 'cli'
version: ''
repoName: 'msgraph-cli'
baseBranchName : 'main'
branchName: 'kiota/$(v1Branch)'
targetClassName: "GraphClient"
targetNamespace: "ApiSdk"
customArguments: "-e '/me' -e '/me/**'"
cleanMetadataFolder: $(cleanOpenAPIFolderV1)
commitMessagePrefix: "feat(generation): update request builders and models"
languageSpecificSteps:
- template: generation-templates/cli-kiota.yml
parameters:
repoName: msgraph-cli
projectFile: src/msgraph-cli.csproj

- stage: stage_cli_beta_kiota
dependsOn:
- stage_build_and_publish_kiota
- stage_beta_openapi
condition: |
and
(
eq(dependencies.stage_build_and_publish_kiota.result, 'Succeeded'),
in(dependencies.stage_beta_openapi.result, 'Succeeded', 'Skipped')
)
jobs:
- job: cli_beta_kiota
timeoutInMinutes: 60
pool:
name: 1es-ubuntu-latest-ado-cli-mem
os: linux
steps:
- template: generation-templates/language-generation-kiota.yml
parameters:
language: 'cli'
version: ''
repoName: 'msgraph-beta-cli'
baseBranchName : 'main'
branchName: 'kiota/$(betaBranch)'
targetClassName: "GraphClient"
targetNamespace: "ApiSdk"
customArguments: "-e '/me' -e '/me/**'"
cleanMetadataFolder: $(cleanOpenAPIFolderBeta)
commitMessagePrefix: "feat(generation): update request builders and models"
languageSpecificSteps:
- template: generation-templates/cli-kiota.yml
parameters:
repoName: msgraph-beta-cli
projectFile: src/msgraph-beta-cli.csproj

- stage: stage_ccs_csharp_beta
dependsOn:
- stage_build_and_publish_kiota
Expand Down
33 changes: 0 additions & 33 deletions .azure-pipelines/generation-templates/cli-kiota.yml

This file was deleted.

Loading