mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-29 21:11:38 +01:00
91 lines
3.3 KiB
YAML
91 lines
3.3 KiB
YAML
parameters:
|
|
- name: VSCODE_BUILD_ALPINE
|
|
type: boolean
|
|
default: false
|
|
- name: VSCODE_BUILD_ALPINE_ARM64
|
|
type: boolean
|
|
default: false
|
|
- name: VSCODE_QUALITY
|
|
type: string
|
|
|
|
steps:
|
|
- task: NodeTool@0
|
|
inputs:
|
|
versionSource: fromFile
|
|
versionFilePath: .nvmrc
|
|
nodejsMirror: https://github.com/joaomoreno/node-mirror/releases/download
|
|
|
|
- ${{ if ne(parameters.VSCODE_QUALITY, 'oss') }}:
|
|
# Install yarn as the ARM64 build agent is using vanilla Ubuntu
|
|
- ${{ if eq(parameters.VSCODE_BUILD_ALPINE_ARM64, true) }}:
|
|
- task: Npm@1
|
|
displayName: Install yarn
|
|
inputs:
|
|
command: custom
|
|
customCommand: install --global yarn
|
|
|
|
- script: |
|
|
set -e
|
|
yarn --frozen-lockfile --ignore-optional
|
|
workingDirectory: build
|
|
displayName: Install pipeline build
|
|
|
|
- template: ../cli/cli-apply-patches.yml
|
|
|
|
- task: Npm@1
|
|
displayName: Download openssl prebuilt
|
|
inputs:
|
|
command: custom
|
|
customCommand: pack @vscode-internal/openssl-prebuilt@0.0.11
|
|
customRegistry: useFeed
|
|
customFeed: "Monaco/openssl-prebuilt"
|
|
workingDir: $(Build.ArtifactStagingDirectory)
|
|
|
|
- script: |
|
|
set -e
|
|
mkdir $(Build.ArtifactStagingDirectory)/openssl
|
|
tar -xvzf $(Build.ArtifactStagingDirectory)/vscode-internal-openssl-prebuilt-0.0.11.tgz --strip-components=1 --directory=$(Build.ArtifactStagingDirectory)/openssl
|
|
displayName: Extract openssl prebuilt
|
|
|
|
# inspired by: https://github.com/emk/rust-musl-builder/blob/main/Dockerfile
|
|
- bash: |
|
|
set -e
|
|
sudo apt-get update
|
|
sudo apt-get install -yq build-essential musl-dev musl-tools linux-libc-dev pkgconf xutils-dev lld
|
|
sudo ln -s "/usr/bin/g++" "/usr/bin/musl-g++" || echo "link exists"
|
|
displayName: Install musl build dependencies
|
|
|
|
- template: ../cli/install-rust-posix.yml
|
|
parameters:
|
|
targets:
|
|
- ${{ if eq(parameters.VSCODE_BUILD_ALPINE_ARM64, true) }}:
|
|
- aarch64-unknown-linux-musl
|
|
- ${{ if eq(parameters.VSCODE_BUILD_ALPINE, true) }}:
|
|
- x86_64-unknown-linux-musl
|
|
|
|
- ${{ if eq(parameters.VSCODE_BUILD_ALPINE_ARM64, true) }}:
|
|
- template: ../cli/cli-compile-and-publish.yml
|
|
parameters:
|
|
VSCODE_CLI_TARGET: aarch64-unknown-linux-musl
|
|
VSCODE_CLI_ARTIFACT: vscode_cli_alpine_arm64_cli
|
|
VSCODE_QUALITY: ${{ parameters.VSCODE_QUALITY }}
|
|
VSCODE_CLI_ENV:
|
|
CXX_aarch64-unknown-linux-musl: musl-g++
|
|
CC_aarch64-unknown-linux-musl: musl-gcc
|
|
OPENSSL_LIB_DIR: $(Build.ArtifactStagingDirectory)/openssl/arm64-linux-musl/lib
|
|
OPENSSL_INCLUDE_DIR: $(Build.ArtifactStagingDirectory)/openssl/arm64-linux-musl/include
|
|
OPENSSL_STATIC: "1"
|
|
|
|
- ${{ if eq(parameters.VSCODE_BUILD_ALPINE, true) }}:
|
|
- template: ../cli/cli-compile-and-publish.yml
|
|
parameters:
|
|
VSCODE_CLI_TARGET: x86_64-unknown-linux-musl
|
|
VSCODE_CLI_ARTIFACT: vscode_cli_alpine_x64_cli
|
|
VSCODE_QUALITY: ${{ parameters.VSCODE_QUALITY }}
|
|
VSCODE_CLI_ENV:
|
|
CXX_aarch64-unknown-linux-musl: musl-g++
|
|
CC_aarch64-unknown-linux-musl: musl-gcc
|
|
OPENSSL_LIB_DIR: $(Build.ArtifactStagingDirectory)/openssl/x64-linux-musl/lib
|
|
OPENSSL_INCLUDE_DIR: $(Build.ArtifactStagingDirectory)/openssl/x64-linux-musl/include
|
|
OPENSSL_STATIC: "1"
|