Skip to content

Commit be433ac

Browse files
authored
build: install packages for distro mixin (microsoft#184207)
1 parent a82af22 commit be433ac

File tree

4 files changed

+26
-0
lines changed

4 files changed

+26
-0
lines changed

build/azure-pipelines/alpine/cli-build-alpine.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@ steps:
1515

1616
- ${{ if ne(parameters.VSCODE_QUALITY, 'oss') }}:
1717
- template: ../distro/download-distro.yml
18+
19+
- script: |
20+
set -e
21+
yarn --frozen-lockfile --ignore-optional
22+
workingDirectory: build
23+
displayName: Install pipeline build
24+
1825
- script: node build/azure-pipelines/distro/apply-cli-patches
1926
displayName: Apply distro patches
2027

build/azure-pipelines/darwin/cli-build-darwin.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@ steps:
1515

1616
- ${{ if ne(parameters.VSCODE_QUALITY, 'oss') }}:
1717
- template: ../distro/download-distro.yml
18+
19+
- script: |
20+
set -e
21+
yarn --frozen-lockfile --ignore-optional
22+
workingDirectory: build
23+
displayName: Install pipeline build
24+
1825
- script: node build/azure-pipelines/distro/apply-cli-patches
1926
displayName: Apply distro patches
2027

build/azure-pipelines/linux/cli-build-linux.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ steps:
1818

1919
- ${{ if ne(parameters.VSCODE_QUALITY, 'oss') }}:
2020
- template: ../distro/download-distro.yml
21+
22+
- script: |
23+
set -e
24+
yarn --frozen-lockfile --ignore-optional
25+
workingDirectory: build
26+
displayName: Install pipeline build
27+
2128
- script: node build/azure-pipelines/distro/apply-cli-patches
2229
displayName: Apply distro patches
2330

build/azure-pipelines/win32/cli-build-win32.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ steps:
1818

1919
- ${{ if ne(parameters.VSCODE_QUALITY, 'oss') }}:
2020
- template: ../distro/download-distro.yml
21+
22+
- pwsh: yarn --frozen-lockfile --ignore-optional
23+
workingDirectory: build
24+
displayName: Install pipeline build
25+
2126
- pwsh: node build/azure-pipelines/distro/apply-cli-patches
2227
displayName: Apply distro patches
2328

0 commit comments

Comments
 (0)