We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbed937 commit 15dc0b5Copy full SHA for 15dc0b5
build/azure-pipelines/alpine/cli-build-alpine.yml
@@ -16,6 +16,14 @@ steps:
16
- ${{ if ne(parameters.VSCODE_QUALITY, 'oss') }}:
17
- template: ../distro/download-distro.yml
18
19
+ # Install yarn as the ARM64 build agent is using vanilla Ubuntu
20
+ - ${{ if eq(parameters.VSCODE_BUILD_ALPINE_ARM64, true) }}:
21
+ - task: Npm@1
22
+ displayName: Install yarn
23
+ inputs:
24
+ command: custom
25
+ customCommand: install --global yarn
26
+
27
- script: |
28
set -e
29
yarn --frozen-lockfile --ignore-optional
0 commit comments