forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
creates tls certificates #1
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
Open
atingmicrosoft
wants to merge
13
commits into
main
Choose a base branch
from
ating/tls-certification-sync
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.
Open
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
cbc42c4
creates tls certificates
atingmicrosoft f0939dd
modified way of creating tls certificates and saving
atingmicrosoft e9bb67c
init new tls certification ui extension
atingmicrosoft 02c6457
remove comments
atingmicrosoft 2772adc
removed changes to rush-vscode-extension and created ui and workspace…
atingmicrosoft 2db45c4
extensions can run separatly
atingmicrosoft 4f61fda
working implementation
atingmicrosoft ee756bf
rush change
atingmicrosoft 30cc021
PR fixes and code cleanup
atingmicrosoft 4bedb45
updated README
atingmicrosoft 1bd1cf3
kept upload extensions under one pipeline instead of two.
atingmicrosoft 91096a7
fix async bug
atingmicrosoft 1f715aa
added extensionKind parameter to package.json
atingmicrosoft 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 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
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
147 changes: 71 additions & 76 deletions
147
build-tests/install-test-workspace/workspace/common/pnpm-lock.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
common/changes/@microsoft/rush/ating-tls-certification-sync_2024-03-12-18-53.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 |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| { | ||
| "changes": [ | ||
| { | ||
| "packageName": "@microsoft/rush", | ||
| "comment": "Added new extension projects tls-certification-ui and tls-certification-workspace", | ||
| "type": "none" | ||
| } | ||
| ], | ||
| "packageName": "@microsoft/rush" | ||
| } |
70 changes: 70 additions & 0 deletions
70
common/config/azure-pipelines/tls-certification-ui-publish.yaml
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,70 @@ | ||
| variables: | ||
| - name: FORCE_COLOR | ||
| value: 1 | ||
|
|
||
| resources: | ||
| repositories: | ||
| - repository: 1esPipelines | ||
| type: git | ||
| name: 1ESPipelineTemplates/1ESPipelineTemplates | ||
| ref: refs/tags/release | ||
|
|
||
| extends: | ||
| template: v1/1ES.Official.PipelineTemplate.yml@1esPipelines | ||
| parameters: | ||
| pool: | ||
| name: Azure-Pipelines-1ESPT-ExDShared | ||
| os: windows | ||
| stages: | ||
| - stage: | ||
| jobs: | ||
| - job: | ||
| pool: | ||
| name: publish-tls-certification-ui | ||
| os: linux | ||
| steps: | ||
| - checkout: self | ||
| persistCredentials: true | ||
|
|
||
| - template: /common/config/azure-pipelines/templates/install-node.yaml@self | ||
|
|
||
| - template: /common/config/azure-pipelines/templates/build.yaml@self | ||
| parameters: | ||
| BuildParameters: > | ||
| --to rushstack | ||
| PerformValidation: false | ||
|
|
||
| - script: node $(Build.SourcesDirectory)/common/scripts/install-run-rushx.js package | ||
| workingDirectory: $(Build.SourcesDirectory)/vscode-extensions/tls-certification-ui | ||
| displayName: 'Package tls certification ui extension' | ||
|
|
||
| - script: node $(Build.SourcesDirectory)/common/scripts/install-run-rushx.js deploy | ||
| workingDirectory: $(Build.SourcesDirectory)/vscode-extensions/tls-certification-ui | ||
| displayName: 'Publish tls certification ui extension' | ||
| env: | ||
| VSCE_PAT: $(vscePat) | ||
| - job: | ||
| pool: | ||
| name: publish-tls-certification-workspace | ||
| os: linux | ||
| steps: | ||
| - checkout: self | ||
| persistCredentials: true | ||
|
|
||
| - template: /common/config/azure-pipelines/templates/install-node.yaml@self | ||
|
|
||
| - template: /common/config/azure-pipelines/templates/build.yaml@self | ||
| parameters: | ||
| BuildParameters: > | ||
| --to rushstack | ||
| PerformValidation: false | ||
|
|
||
| - script: node $(Build.SourcesDirectory)/common/scripts/install-run-rushx.js package | ||
| workingDirectory: $(Build.SourcesDirectory)/vscode-extensions/tls-certification-workspace | ||
| displayName: 'Package tls certification workspace extension' | ||
|
|
||
| - script: node $(Build.SourcesDirectory)/common/scripts/install-run-rushx.js deploy | ||
| workingDirectory: $(Build.SourcesDirectory)/vscode-extensions/tls-certification-workspace | ||
| displayName: 'Publish tls certification workspace extension' | ||
| env: | ||
| VSCE_PAT: $(vscePat) | ||
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
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
Oops, something went wrong.
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.
Better to just replicate these two steps for each extension folder in the repository, and keep it all in one pipeline.