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
2 changes: 2 additions & 0 deletions build/azure-pipelines/product-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,8 @@ extends:
os: linux
jobs:
- template: build/azure-pipelines/product-copilot.yml@self
parameters:
VSCODE_RELEASE: ${{ parameters.VSCODE_RELEASE }}

- ${{ if eq(variables['VSCODE_BUILD_STAGE_WINDOWS'], true) }}:
- stage: Windows
Expand Down
20 changes: 13 additions & 7 deletions build/azure-pipelines/product-copilot.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
parameters:
- name: VSCODE_RELEASE
type: boolean
default: false

jobs:
- job: Copilot
displayName: Copilot
Expand Down Expand Up @@ -29,13 +34,14 @@ jobs:
- template: copilot/build-steps.yml
- template: copilot/l10n-steps.yml

- task: notice@0
inputs:
outputfile: $(Build.SourcesDirectory)/extensions/copilot/ThirdPartyNotices.txt
outputformat: text
continueOnError: true
retryCountOnTaskFailure: 5
displayName: Generate NOTICE file
- ${{ if or(eq(variables['VSCODE_PUBLISH'], true), eq(parameters.VSCODE_RELEASE, true)) }}:
- task: notice@0
inputs:
outputfile: $(Build.SourcesDirectory)/extensions/copilot/ThirdPartyNotices.txt
outputformat: text
continueOnError: true
retryCountOnTaskFailure: 5
displayName: Generate NOTICE file

- script: |
set -e
Expand Down
Loading