mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Build yamls (#8360)
* add darwin build * add global product build * add linux build * fix build * fix linux; add win32 * formatting * formatting * formatting * formatting * fix win32 * fix windows * fix python * fix linux display * fix linux * fix windows naming * fix windows timeout * add tagging * add env for building * add schedule
This commit is contained in:
33
build/azure-pipelines/sql-product-build.yml
Normal file
33
build/azure-pipelines/sql-product-build.yml
Normal file
@@ -0,0 +1,33 @@
|
||||
jobs:
|
||||
- job: macOS
|
||||
condition: eq(variables['VSCODE_BUILD_MACOS'], 'true')
|
||||
pool:
|
||||
vmImage: macOS 10.13
|
||||
steps:
|
||||
- template: darwin/sql-product-build-darwin.yml
|
||||
|
||||
- job: Linux
|
||||
condition: eq(variables['VSCODE_BUILD_LINUX'], 'true')
|
||||
pool:
|
||||
vmImage: 'Ubuntu-16.04'
|
||||
steps:
|
||||
- template: linux/sql-product-build-linux.yml
|
||||
|
||||
- job: Windows
|
||||
condition: eq(variables['VSCODE_BUILD_WIN32'], 'true')
|
||||
pool:
|
||||
name: mssqltools
|
||||
steps:
|
||||
- template: win32/sql-product-build-win32.yml
|
||||
timeoutInMinutes: 120
|
||||
cancelTimeoutInMinutes: 5
|
||||
|
||||
trigger: none
|
||||
pr: none
|
||||
|
||||
schedules:
|
||||
- cron: "0 5 * * Mon-Fri"
|
||||
displayName: Mon-Fri at 7:00
|
||||
branches:
|
||||
include:
|
||||
- master
|
||||
Reference in New Issue
Block a user