mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
* Update build for web issues * Fix remote\web package.json * Remove extension activate test * Add terminal entry point * Bump distro * Update docker files and pipelines * Add linux task * Update build pool * Correct image name * Update pipelines * Fix indention * Update sql-web-build.yml for Azure Pipelines Add new build variable * Update sql-web-build.yml for Azure Pipelines Revert previous commit * Disable sourcemaps upload * Remove compile step * Fix yaml typo * Fix dependson error * Update yaml * Add notebook parameters * Remove web from desktop builds * Add web createDrop script * Bump distro * Change execution mode on createDrop script * Code review feedback * Update CI hygiene cache key * Bump distro * Fix merge conflicts * Revert "Fix merge conflicts" This reverts commit 06f7a58b6e0a065520b7686e8469e4e7682e157a. * Bump distro to before smoke test update
89 lines
2.3 KiB
YAML
89 lines
2.3 KiB
YAML
resources:
|
|
containers:
|
|
- container: linux-x64
|
|
image: sqltoolscontainers.azurecr.io/linux-build-agent:3
|
|
endpoint: ContainerRegistry
|
|
|
|
jobs:
|
|
- job: Compile
|
|
pool:
|
|
vmImage: 'Ubuntu-18.04'
|
|
container: linux-x64
|
|
steps:
|
|
- script: |
|
|
set -e
|
|
echo "##vso[build.addbuildtag]$(VSCODE_QUALITY)"
|
|
displayName: Add Quality Build Tag
|
|
- template: sql-product-compile.yml
|
|
timeoutInMinutes: 120
|
|
|
|
- job: macOS
|
|
condition: and(succeeded(), eq(variables['VSCODE_BUILD_MACOS'], 'true'), ne(variables['VSCODE_QUALITY'], 'saw'))
|
|
pool:
|
|
vmImage: macOS-latest
|
|
dependsOn:
|
|
- Compile
|
|
steps:
|
|
- template: darwin/sql-product-build-darwin.yml
|
|
timeoutInMinutes: 90
|
|
|
|
- job: macOS_Signing
|
|
condition: and(succeeded(), eq(variables['VSCODE_BUILD_MACOS'], 'true'), eq(variables['signed'], true), ne(variables['VSCODE_QUALITY'], 'saw'))
|
|
pool:
|
|
vmImage: macOS-latest
|
|
dependsOn:
|
|
- macOS
|
|
steps:
|
|
- template: darwin/sql-product-build-darwin-signing.yml
|
|
timeoutInMinutes: 60
|
|
|
|
- job: Linux
|
|
condition: and(succeeded(), eq(variables['VSCODE_BUILD_LINUX'], 'true'))
|
|
pool:
|
|
vmImage: 'Ubuntu-18.04'
|
|
container: linux-x64
|
|
dependsOn:
|
|
- Compile
|
|
steps:
|
|
- template: linux/sql-product-build-linux.yml
|
|
parameters:
|
|
extensionsToUnitTest: ["admin-tool-ext-win", "agent", "azdata", "azurecore", "cms", "dacpac", "import", "schema-compare", "notebook", "resource-deployment", "machine-learning", "sql-database-projects", "data-workspace"]
|
|
timeoutInMinutes: 90
|
|
|
|
- job: Windows
|
|
condition: and(succeeded(), eq(variables['VSCODE_BUILD_WIN32'], 'true'))
|
|
pool:
|
|
vmImage: VS2017-Win2016
|
|
dependsOn:
|
|
- Compile
|
|
steps:
|
|
- template: win32/sql-product-build-win32.yml
|
|
timeoutInMinutes: 90
|
|
|
|
- job: Windows_Test
|
|
condition: and(succeeded(), eq(variables['VSCODE_BUILD_WIN32'], 'true'))
|
|
pool:
|
|
name: mssqltools
|
|
dependsOn:
|
|
- Linux
|
|
- Windows
|
|
steps:
|
|
- template: win32/sql-product-test-win32.yml
|
|
timeoutInMinutes: 90
|
|
|
|
- job: Release
|
|
condition: and(succeeded(), or(eq(variables['VSCODE_RELEASE'], 'true'), and(eq(variables['VSCODE_QUALITY'], 'insider'), eq(variables['Build.Reason'], 'Schedule'))))
|
|
pool:
|
|
vmImage: 'Ubuntu-18.04'
|
|
dependsOn:
|
|
- macOS
|
|
- Linux
|
|
- Windows
|
|
- Windows_Test
|
|
- macOS_Signing
|
|
steps:
|
|
- template: sql-release.yml
|
|
|
|
trigger: none
|
|
pr: none
|