mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 11:10:48 +00:00
e5515ac702
* extend 1es pipeline template * oops * fix template references * argh * hmm * hm * hm * use outputs for compilation artifact * this * use 1ES.PublishPipelineArtifact@1 instead of publish * more 1ES.PublishPipelineArtifact@1 adoption * provide windows pool for sdl sources * sdl * fix pools * fix macos * disable sbom for intermediate artifacts * use mariner linux * try inline tsa options * fix credscan * hm * sudo it * more suppressions * be explicit with SBOM build drop paths * fix indentation * fix file extensions * fix cli sbom build drop paths * fix more build * fix unzip cli * careful with _manifest in artifacts * do not close file * add logging * debug * use snapcraft container * remove size check * fix macos cli step * fix snap permissions * fix macos * better logs * fix snap * more cred scan suppressions * even more supressiong * alpine-arm64: try using x64 * Revert "alpine-arm64: try using x64" This reverts commitbf2003bf60
. * test docker * I wonder * logs * hm * fix indentation * hm * hm * fix snap finds * remove auth * use hostArchitecture * snap: limit find * hm * sudo * Add validateToolOutput: None to the build pipeline * bring back sdl-scan * try all tools: true * use release * Update Azure Pipelines YAML file for Linux product build and test * hm * hm * same for win32 * hm * hm * Revert "hm" This reverts commit1b9dcae85b
. * use branch * fix template file * fix template paths
212 lines
6.4 KiB
YAML
212 lines
6.4 KiB
YAML
trigger:
|
|
- main
|
|
- release/*
|
|
|
|
pr:
|
|
branches:
|
|
include: ["main", "release/*"]
|
|
|
|
variables:
|
|
- name: Codeql.SkipTaskAutoInjection
|
|
value: true
|
|
- name: skipComponentGovernanceDetection
|
|
value: true
|
|
- name: NPM_REGISTRY
|
|
value: "none"
|
|
- name: CARGO_REGISTRY
|
|
value: "none"
|
|
- name: VSCODE_CIBUILD
|
|
value: ${{ in(variables['Build.Reason'], 'IndividualCI', 'BatchedCI') }}
|
|
- name: VSCODE_QUALITY
|
|
value: oss
|
|
- name: VSCODE_STEP_ON_IT
|
|
value: false
|
|
|
|
jobs:
|
|
- ${{ if ne(variables['VSCODE_CIBUILD'], true) }}:
|
|
- job: Compile
|
|
displayName: Compile & Hygiene
|
|
pool: 1es-oss-ubuntu-20.04-x64
|
|
timeoutInMinutes: 30
|
|
variables:
|
|
VSCODE_ARCH: x64
|
|
steps:
|
|
- template: product-compile.yml@self
|
|
parameters:
|
|
VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
|
|
|
|
- job: Linuxx64UnitTest
|
|
displayName: Linux (Unit Tests)
|
|
pool: 1es-oss-ubuntu-20.04-x64
|
|
timeoutInMinutes: 30
|
|
variables:
|
|
VSCODE_ARCH: x64
|
|
NPM_ARCH: x64
|
|
DISPLAY: ":10"
|
|
steps:
|
|
- template: linux/product-build-linux.yml@self
|
|
parameters:
|
|
VSCODE_ARCH: x64
|
|
VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
|
|
VSCODE_CIBUILD: ${{ variables.VSCODE_CIBUILD }}
|
|
VSCODE_RUN_UNIT_TESTS: true
|
|
VSCODE_RUN_INTEGRATION_TESTS: false
|
|
VSCODE_RUN_SMOKE_TESTS: false
|
|
|
|
- job: Linuxx64IntegrationTest
|
|
displayName: Linux (Integration Tests)
|
|
pool: 1es-oss-ubuntu-20.04-x64
|
|
timeoutInMinutes: 30
|
|
variables:
|
|
VSCODE_ARCH: x64
|
|
NPM_ARCH: x64
|
|
DISPLAY: ":10"
|
|
steps:
|
|
- template: linux/product-build-linux.yml@self
|
|
parameters:
|
|
VSCODE_ARCH: x64
|
|
VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
|
|
VSCODE_CIBUILD: ${{ variables.VSCODE_CIBUILD }}
|
|
VSCODE_RUN_UNIT_TESTS: false
|
|
VSCODE_RUN_INTEGRATION_TESTS: true
|
|
VSCODE_RUN_SMOKE_TESTS: false
|
|
|
|
- job: Linuxx64SmokeTest
|
|
displayName: Linux (Smoke Tests)
|
|
pool: 1es-oss-ubuntu-20.04-x64
|
|
timeoutInMinutes: 30
|
|
variables:
|
|
VSCODE_ARCH: x64
|
|
NPM_ARCH: x64
|
|
DISPLAY: ":10"
|
|
steps:
|
|
- template: linux/product-build-linux.yml@self
|
|
parameters:
|
|
VSCODE_ARCH: x64
|
|
VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
|
|
VSCODE_CIBUILD: ${{ variables.VSCODE_CIBUILD }}
|
|
VSCODE_RUN_UNIT_TESTS: false
|
|
VSCODE_RUN_INTEGRATION_TESTS: false
|
|
VSCODE_RUN_SMOKE_TESTS: true
|
|
|
|
- job: LinuxCLI
|
|
displayName: Linux (CLI)
|
|
pool: 1es-oss-ubuntu-20.04-x64
|
|
timeoutInMinutes: 30
|
|
steps:
|
|
- template: cli/test.yml@self
|
|
|
|
- job: Windowsx64UnitTests
|
|
displayName: Windows (Unit Tests)
|
|
pool: 1es-oss-windows-2019-x64
|
|
timeoutInMinutes: 30
|
|
variables:
|
|
VSCODE_ARCH: x64
|
|
NPM_ARCH: x64
|
|
steps:
|
|
- template: win32/product-build-win32.yml@self
|
|
parameters:
|
|
VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
|
|
VSCODE_ARCH: x64
|
|
VSCODE_CIBUILD: ${{ variables.VSCODE_CIBUILD }}
|
|
VSCODE_RUN_UNIT_TESTS: true
|
|
VSCODE_RUN_INTEGRATION_TESTS: false
|
|
VSCODE_RUN_SMOKE_TESTS: false
|
|
|
|
- job: Windowsx64IntegrationTests
|
|
displayName: Windows (Integration Tests)
|
|
pool: 1es-oss-windows-2019-x64
|
|
timeoutInMinutes: 30
|
|
variables:
|
|
VSCODE_ARCH: x64
|
|
NPM_ARCH: x64
|
|
steps:
|
|
- template: win32/product-build-win32.yml@self
|
|
parameters:
|
|
VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
|
|
VSCODE_ARCH: x64
|
|
VSCODE_CIBUILD: ${{ variables.VSCODE_CIBUILD }}
|
|
VSCODE_RUN_UNIT_TESTS: false
|
|
VSCODE_RUN_INTEGRATION_TESTS: true
|
|
VSCODE_RUN_SMOKE_TESTS: false
|
|
|
|
# - job: Windowsx64SmokeTests
|
|
# displayName: Windows (Smoke Tests)
|
|
# pool: 1es-oss-windows-2019-x64
|
|
# timeoutInMinutes: 30
|
|
# variables:
|
|
# VSCODE_ARCH: x64
|
|
# NPM_ARCH: x64
|
|
# steps:
|
|
# - template: win32/product-build-win32.yml@self
|
|
# parameters:
|
|
# VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
|
|
# VSCODE_ARCH: x64
|
|
# VSCODE_RUN_UNIT_TESTS: false
|
|
# VSCODE_RUN_INTEGRATION_TESTS: false
|
|
# VSCODE_RUN_SMOKE_TESTS: true
|
|
|
|
- ${{ if eq(variables['VSCODE_CIBUILD'], true) }}:
|
|
- job: Linuxx64MaintainNodeModulesCache
|
|
displayName: Linux (Maintain node_modules cache)
|
|
pool: 1es-oss-ubuntu-20.04-x64
|
|
timeoutInMinutes: 30
|
|
variables:
|
|
VSCODE_ARCH: x64
|
|
steps:
|
|
- template: oss/product-build-pr-cache-linux.yml@self
|
|
|
|
- job: Windowsx64MaintainNodeModulesCache
|
|
displayName: Windows (Maintain node_modules cache)
|
|
pool: 1es-oss-windows-2019-x64
|
|
timeoutInMinutes: 30
|
|
variables:
|
|
VSCODE_ARCH: x64
|
|
steps:
|
|
- template: oss/product-build-pr-cache-win32.yml@self
|
|
|
|
# - job: macOSUnitTest
|
|
# displayName: macOS (Unit Tests)
|
|
# pool:
|
|
# vmImage: macOS-11
|
|
# timeoutInMinutes: 60
|
|
# variables:
|
|
# BUILDSECMON_OPT_IN: true
|
|
# VSCODE_ARCH: x64
|
|
# steps:
|
|
# - template: darwin/product-build-darwin.yml@self
|
|
# parameters:
|
|
# VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
|
|
# VSCODE_RUN_UNIT_TESTS: true
|
|
# VSCODE_RUN_INTEGRATION_TESTS: false
|
|
# VSCODE_RUN_SMOKE_TESTS: false
|
|
# - job: macOSIntegrationTest
|
|
# displayName: macOS (Integration Tests)
|
|
# pool:
|
|
# vmImage: macOS-11
|
|
# timeoutInMinutes: 60
|
|
# variables:
|
|
# BUILDSECMON_OPT_IN: true
|
|
# VSCODE_ARCH: x64
|
|
# steps:
|
|
# - template: darwin/product-build-darwin.yml@self
|
|
# parameters:
|
|
# VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
|
|
# VSCODE_RUN_UNIT_TESTS: false
|
|
# VSCODE_RUN_INTEGRATION_TESTS: true
|
|
# VSCODE_RUN_SMOKE_TESTS: false
|
|
# - job: macOSSmokeTest
|
|
# displayName: macOS (Smoke Tests)
|
|
# pool:
|
|
# vmImage: macOS-11
|
|
# timeoutInMinutes: 60
|
|
# variables:
|
|
# BUILDSECMON_OPT_IN: true
|
|
# VSCODE_ARCH: x64
|
|
# steps:
|
|
# - template: darwin/product-build-darwin.yml@self
|
|
# parameters:
|
|
# VSCODE_QUALITY: ${{ variables.VSCODE_QUALITY }}
|
|
# VSCODE_RUN_UNIT_TESTS: false
|
|
# VSCODE_RUN_INTEGRATION_TESTS: false
|
|
# VSCODE_RUN_SMOKE_TESTS: true
|