-
Notifications
You must be signed in to change notification settings - Fork 10
Try out the new pipelines #334
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
Draft
bwateratmsft
wants to merge
3
commits into
main
Choose a base branch
from
bmw/tryNewPipelines
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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,36 +1,34 @@ | ||
| # Trigger the build whenever `main` or `rel/*` is updated | ||
| trigger: | ||
| - main | ||
| - rel/* | ||
|
|
||
| # Disable PR trigger | ||
| pr: none | ||
|
|
||
| # Scheduled nightly build of `main` | ||
| schedules: | ||
| - cron: "0 0 * * *" | ||
| displayName: Nightly scheduled build | ||
| always: false # Don't rebuild if there haven't been changes | ||
| branches: | ||
| include: | ||
| - main | ||
|
|
||
| # `resources` specifies the location of templates to pick up, use it to get AzExt templates | ||
| resources: | ||
| repositories: | ||
| - repository: azExtTemplates | ||
| type: github | ||
| name: microsoft/vscode-azuretools | ||
| ref: main | ||
| endpoint: GitHub-AzureTools # The service connection to use when accessing this repository | ||
|
|
||
| variables: | ||
| # Required by MicroBuild template | ||
| - name: TeamName | ||
| value: "Container Tools Team" | ||
|
|
||
| # Use those templates | ||
| extends: | ||
| template: azure-pipelines/1esmain.yml@azExtTemplates | ||
| parameters: | ||
| enableSigning: false | ||
| # Trigger the build whenever `main` or `rel/*` is updated | ||
| trigger: | ||
| - main | ||
| - rel/* | ||
|
|
||
| # Disable PR trigger | ||
| pr: none | ||
|
|
||
| # Scheduled nightly build of `main` | ||
| schedules: | ||
| - cron: "0 0 * * *" | ||
| displayName: Nightly scheduled build | ||
| always: false # Don't rebuild if there haven't been changes | ||
| branches: | ||
| include: | ||
| - main | ||
|
|
||
| resources: | ||
| repositories: | ||
| # Use the shared templates from microsoft/vscode-azuretools | ||
| - repository: azExtTemplates | ||
| type: github | ||
| name: microsoft/vscode-azuretools | ||
| ref: bmw/pipelinesv2_2 # TODO: update to final branch | ||
| endpoint: GitHub-AzureTools # The service connection to use when accessing this repository | ||
|
|
||
| variables: | ||
| - name: TeamName | ||
| value: "Container Tools Team" # Required for MicroBuild signing and telemetry | ||
|
|
||
| extends: | ||
| template: azdo-pipelines/1es-mb-main.yml@azExtTemplates # Use the main build template | ||
| parameters: | ||
| signType: none | ||
This file contains hidden or 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,53 @@ | ||
| # Only run this pipeline when manually triggered | ||
| trigger: none | ||
| pr: none | ||
|
|
||
| parameters: | ||
| # Choose a package to publish at the time of job creation | ||
| - name: packageToPublish | ||
| displayName: Package to publish | ||
| type: string | ||
| values: | ||
| - microsoft-vscode-processutils | ||
| - microsoft-vscode-container-client | ||
| - microsoft-vscode-docker-registries | ||
| - microsoft-vscode-inproc-mcp | ||
| # The version to publish--used for ensuring the expected version is published | ||
| - name: publishVersion | ||
| displayName: Version to publish | ||
| type: string | ||
| # Whether to do a dry run (i.e., not actually publish) | ||
| - name: dryRun | ||
| displayName: Dry run | ||
| type: boolean | ||
| default: false | ||
|
|
||
| resources: | ||
| pipelines: | ||
| # Reference the build pipeline to get the artifacts | ||
| - pipeline: build # This must be "build" | ||
| source: \Azure Tools\VSCode\Packages\vscode-docker-extensibility # Name of the pipeline that produces the artifacts | ||
| repositories: | ||
| # Use the shared templates from microsoft/vscode-azuretools | ||
| - repository: azExtTemplates | ||
| type: github | ||
| name: microsoft/vscode-azuretools | ||
| ref: bmw/pipelinesv2_2 # TODO: update to final branch | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. TODO |
||
| endpoint: GitHub-AzureTools # The service connection to use when accessing this repository | ||
|
|
||
| variables: | ||
| # Pick up shared AZCode variables | ||
| - template: azdo-pipelines/azcode.variables.yml@azExtTemplates | ||
| - name: TeamName | ||
| value: "Container Tools Team" # Required for MicroBuild signing and telemetry | ||
|
|
||
| extends: | ||
| template: azdo-pipelines/1es-mb-release-npm.yml@azExtTemplates # Use the NPM release template | ||
| parameters: | ||
| packageToPublish: ${{ parameters.packageToPublish }} | ||
| publishVersion: ${{ parameters.publishVersion }} | ||
| dryRun: ${{ parameters.dryRun }} | ||
| ownerAliases: ${{ variables.npmReleaseOwnerAliases }} | ||
| approverAliases: ${{ variables.npmReleaseApproverAliases }} | ||
| gitHubServiceConnection: ${{ variables.gitHubServiceConnection }} | ||
| releaseApprovalEnvironment: VSCodeDockerExtensionPublish | ||
28 changes: 14 additions & 14 deletions
28
.azure-pipelines/compliance/tsaoptions.json → .config/tsaoptions.json
This file contains hidden or 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,14 +1,14 @@ | ||
| { | ||
| "tsaVersion": "TsaV2", | ||
| "codeBase": "NewOrUpdate", | ||
| "codeBaseName": "vscode-docker-extensibility", | ||
| "tsaStamp": "DevDiv", | ||
| "notificationAliases": [ | ||
| "DockerToolsTeam@microsoft.com" | ||
| ], | ||
| "instanceUrl": "https://devdiv.visualstudio.com", | ||
| "projectName": "DevDiv", | ||
| "areaPath": "DevDiv\\VS Azure Tools\\Container Tools", | ||
| "iterationPath": "DevDiv", | ||
| "allTools": true | ||
| } | ||
| { | ||
| "tsaVersion": "TsaV2", | ||
| "codeBase": "NewOrUpdate", | ||
| "codeBaseName": "vscode-docker-extensibility", | ||
| "tsaStamp": "DevDiv", | ||
| "notificationAliases": [ | ||
| "DockerToolsTeam@microsoft.com" | ||
| ], | ||
| "instanceUrl": "https://devdiv.visualstudio.com", | ||
| "projectName": "DevDiv", | ||
| "areaPath": "DevDiv\\VS Azure Tools\\Container Tools", | ||
| "iterationPath": "DevDiv", | ||
| "allTools": true | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TODO