Skip to content
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
19 changes: 14 additions & 5 deletions .azure-pipelines/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,7 @@ extends:
templateContext:
mb:
signing:
enabled: true
signType: real
signWithProd: true
zipSources: false
feedSource: 'https://mseng.pkgs.visualstudio.com/DefaultCollection/_packaging/MicroBuildToolset/nuget/v3/index.json'
enabled: false
outputs:
- output: pipelineArtifact
artifactName: vsix
Expand All @@ -45,6 +41,19 @@ extends:
- checkout: self
clean: true
fetchTags: false
# Pin the last known-good Windows plugin while the 1.1.1374 client certificate regression is unresolved.
- task: NuGetAuthenticate@1
displayName: Authenticate MicroBuild feed
- task: MicroBuildSigningPlugin@4
displayName: Install Signing Plugin 1.1.1330
inputs:
signType: real
version: '1.1.1330'
zipSources: false
ConnectedPMEServiceName: '40012d40-9ded-4f75-8476-d60758200346'
feedSource: 'https://mseng.pkgs.visualstudio.com/DefaultCollection/_packaging/MicroBuildToolset/nuget/v3/index.json'
env:
MicroBuildOutputFolderOverride: '$(Agent.TempDirectory)'
- task: NodeTool@0
displayName: Use Node 20.x
inputs:
Expand Down
19 changes: 14 additions & 5 deletions .azure-pipelines/rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,7 @@ extends:
templateContext:
mb:
signing:
enabled: true
signType: real
signWithProd: true
zipSources: false
feedSource: 'https://mseng.pkgs.visualstudio.com/DefaultCollection/_packaging/MicroBuildToolset/nuget/v3/index.json'
enabled: false
outputs:
- output: pipelineArtifact
artifactName: vsix
Expand All @@ -40,6 +36,19 @@ extends:
- checkout: self
clean: true
fetchTags: false
# Pin the last known-good Windows plugin while the 1.1.1374 client certificate regression is unresolved.
- task: NuGetAuthenticate@1
displayName: Authenticate MicroBuild feed
- task: MicroBuildSigningPlugin@4
displayName: Install Signing Plugin 1.1.1330
inputs:
signType: real
version: '1.1.1330'
zipSources: false
ConnectedPMEServiceName: '40012d40-9ded-4f75-8476-d60758200346'
feedSource: 'https://mseng.pkgs.visualstudio.com/DefaultCollection/_packaging/MicroBuildToolset/nuget/v3/index.json'
env:
MicroBuildOutputFolderOverride: '$(Agent.TempDirectory)'
- task: NodeTool@0
displayName: Use Node 20.x
inputs:
Expand Down
Loading