-
Notifications
You must be signed in to change notification settings - Fork 609
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/microsoft/rushstack into us…
…er/danade/PreventAmbiguousAbbreviations
- Loading branch information
Showing
25 changed files
with
278 additions
and
107 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
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
11 changes: 11 additions & 0 deletions
11
common/changes/@microsoft/rush/1es-templates_2023-10-24-00-46.json
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,11 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"comment": "", | ||
"type": "none", | ||
"packageName": "@microsoft/rush" | ||
} | ||
], | ||
"packageName": "@microsoft/rush", | ||
"email": "[email protected]" | ||
} |
10 changes: 10 additions & 0 deletions
10
common/changes/@microsoft/rush/dmyers-shrinkwrap-filename_2023-10-18-19-31.json
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,10 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"packageName": "@microsoft/rush", | ||
"comment": "Include the filename of the shrinkwrap file in logging messages for all package managers, not just Yarn.", | ||
"type": "none" | ||
} | ||
], | ||
"packageName": "@microsoft/rush" | ||
} |
10 changes: 10 additions & 0 deletions
10
common/changes/@microsoft/rush/sanjaiyan-async-concurrent_2023-10-20-07-32.json
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,10 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"packageName": "@microsoft/rush", | ||
"comment": "performance improvements by running asynchronous code concurrently using Promise.all", | ||
"type": "none" | ||
} | ||
], | ||
"packageName": "@microsoft/rush" | ||
} |
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,41 +1,60 @@ | ||
pool: | ||
vmImage: 'ubuntu-latest' | ||
|
||
variables: | ||
- name: FORCE_COLOR | ||
value: 1 | ||
- name: SourceBranch | ||
value: $[ replace(replace(resources.repositories.self.ref, 'refs/heads/', ''), 'refs/pull/', 'refs/remotes/pull/') ] | ||
|
||
steps: | ||
- checkout: self | ||
persistCredentials: true | ||
|
||
- template: templates/install-node.yaml | ||
|
||
- template: templates/build.yaml | ||
|
||
- template: templates/bump-versions.yaml | ||
parameters: | ||
VersionPolicyName: noRush | ||
BranchName: $(SourceBranch) | ||
|
||
- template: templates/bump-versions.yaml | ||
parameters: | ||
VersionPolicyName: rush | ||
BranchName: $(SourceBranch) | ||
|
||
- script: 'node libraries/rush-lib/scripts/plugins-prepublish.js' | ||
displayName: 'Prepublish workaround for rush-lib' | ||
|
||
- template: templates/publish.yaml | ||
parameters: | ||
VersionPolicyName: noRush | ||
BranchName: $(SourceBranch) | ||
|
||
- template: templates/publish.yaml | ||
parameters: | ||
VersionPolicyName: rush | ||
BranchName: $(SourceBranch) | ||
|
||
- template: templates/record-published-versions.yaml | ||
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: | ||
templateContext: | ||
outputs: | ||
- output: pipelineArtifact | ||
targetPath: $(Build.ArtifactStagingDirectory)/published-versions | ||
artifactName: published-versions | ||
steps: | ||
- checkout: self | ||
persistCredentials: true | ||
|
||
- template: /common/config/azure-pipelines/templates/install-node.yaml@self | ||
|
||
- template: /common/config/azure-pipelines/templates/build.yaml@self | ||
|
||
- template: /common/config/azure-pipelines/templates/bump-versions.yaml@self | ||
parameters: | ||
VersionPolicyName: noRush | ||
BranchName: $(SourceBranch) | ||
|
||
- template: /common/config/azure-pipelines/templates/bump-versions.yaml@self | ||
parameters: | ||
VersionPolicyName: rush | ||
BranchName: $(SourceBranch) | ||
|
||
- script: 'node libraries/rush-lib/scripts/plugins-prepublish.js' | ||
displayName: 'Prepublish workaround for rush-lib' | ||
|
||
- template: /common/config/azure-pipelines/templates/publish.yaml@self | ||
parameters: | ||
VersionPolicyName: noRush | ||
BranchName: $(SourceBranch) | ||
|
||
- template: /common/config/azure-pipelines/templates/publish.yaml@self | ||
parameters: | ||
VersionPolicyName: rush | ||
BranchName: $(SourceBranch) | ||
|
||
- template: /common/config/azure-pipelines/templates/record-published-versions.yaml@self |
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,28 +1,47 @@ | ||
pool: | ||
vmImage: 'ubuntu-latest' | ||
|
||
variables: | ||
- name: FORCE_COLOR | ||
value: 1 | ||
- name: SourceBranch | ||
value: $[ replace(replace(resources.repositories.self.ref, 'refs/heads/', ''), 'refs/pull/', 'refs/remotes/pull/') ] | ||
|
||
steps: | ||
- checkout: self | ||
persistCredentials: true | ||
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: | ||
templateContext: | ||
outputs: | ||
- output: pipelineArtifact | ||
targetPath: $(Build.ArtifactStagingDirectory)/published-versions | ||
artifactName: published-versions | ||
steps: | ||
- checkout: self | ||
persistCredentials: true | ||
|
||
- template: templates/install-node.yaml | ||
- template: /common/config/azure-pipelines/templates/install-node.yaml@self | ||
|
||
- template: templates/build.yaml | ||
- template: /common/config/azure-pipelines/templates/build.yaml@self | ||
|
||
- template: templates/bump-versions.yaml | ||
parameters: | ||
VersionPolicyName: noRush | ||
BranchName: $(SourceBranch) | ||
- template: /common/config/azure-pipelines/templates/bump-versions.yaml@self | ||
parameters: | ||
VersionPolicyName: noRush | ||
BranchName: $(SourceBranch) | ||
|
||
- template: templates/publish.yaml | ||
parameters: | ||
VersionPolicyName: noRush | ||
BranchName: $(SourceBranch) | ||
- template: /common/config/azure-pipelines/templates/publish.yaml@self | ||
parameters: | ||
VersionPolicyName: noRush | ||
BranchName: $(SourceBranch) | ||
|
||
- template: templates/record-published-versions.yaml | ||
- template: /common/config/azure-pipelines/templates/record-published-versions.yaml@self |
7 changes: 4 additions & 3 deletions
7
common/config/azure-pipelines/templates/record-published-versions.yaml
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,6 +1,7 @@ | ||
steps: | ||
- script: 'node repo-scripts/repo-toolbox/lib/start.js record-versions --out-file $(Build.ArtifactStagingDirectory)/published-versions/published-versions.json' | ||
displayName: 'Record Published Versions' | ||
- publish: $(Build.ArtifactStagingDirectory)/published-versions | ||
artifact: published-versions | ||
displayName: 'Publish Artifact: published-versions' | ||
# Published by the 1ES template | ||
# - publish: $(Build.ArtifactStagingDirectory)/published-versions | ||
# artifact: published-versions | ||
# displayName: 'Publish Artifact: published-versions' |
54 changes: 34 additions & 20 deletions
54
common/config/azure-pipelines/vscode-extension-publish.yaml
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,28 +1,42 @@ | ||
pool: | ||
vmImage: 'ubuntu-latest' | ||
|
||
variables: | ||
- name: FORCE_COLOR | ||
value: 1 | ||
|
||
steps: | ||
- checkout: self | ||
persistCredentials: true | ||
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: | ||
steps: | ||
- checkout: self | ||
persistCredentials: true | ||
|
||
- template: templates/install-node.yaml | ||
- template: /common/config/azure-pipelines/templates/install-node.yaml@self | ||
|
||
- template: templates/build.yaml | ||
parameters: | ||
BuildParameters: > | ||
--to rushstack | ||
PerformValidation: false | ||
- 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/rush-vscode-extension | ||
displayName: 'Package vscode extension' | ||
- script: node $(Build.SourcesDirectory)/common/scripts/install-run-rushx.js package | ||
workingDirectory: $(Build.SourcesDirectory)/vscode-extensions/rush-vscode-extension | ||
displayName: 'Package vscode extension' | ||
|
||
- script: node $(Build.SourcesDirectory)/common/scripts/install-run-rushx.js deploy | ||
workingDirectory: $(Build.SourcesDirectory)/vscode-extensions/rush-vscode-extension | ||
displayName: 'Publish vscode extension' | ||
env: | ||
VSCE_PAT: $(vscePat) | ||
- script: node $(Build.SourcesDirectory)/common/scripts/install-run-rushx.js deploy | ||
workingDirectory: $(Build.SourcesDirectory)/vscode-extensions/rush-vscode-extension | ||
displayName: 'Publish vscode extension' | ||
env: | ||
VSCE_PAT: $(vscePat) |
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
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
Oops, something went wrong.