mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-28 01:25:39 -05:00
* Adjusts timeout period * Revert "Adjusts timeout period" This reverts commit 0f372eae2a4611554093b6c09f1ff6c451132e19. * Adds firefox as browser option * Corrects yaml smoke test script * Resets args array to original values * Corrects build path * Resolves ignoring browser option error * continue even after writing to stderr * Adjusts smoke test (browser) script * More adjustments to smoke test script * Corrects server path * Uses build variable directly in build path * Specifies browser type since cannot be ignored error * Adds browser option * Updates web build image and corrects smoke test exe command * Removes commented out task * Updates dockerfile to support web smoketests * Removes failOnStderr flag * Use curl instead of wget in Dockerfile
30 lines
539 B
YAML
30 lines
539 B
YAML
resources:
|
|
containers:
|
|
- container: linux-x64
|
|
image: sqltoolscontainers.azurecr.io/web-build-image:2
|
|
endpoint: ContainerRegistry
|
|
|
|
jobs:
|
|
- job: LinuxWeb
|
|
pool:
|
|
vmImage: 'Ubuntu-18.04'
|
|
container: linux-x64
|
|
variables:
|
|
VSCODE_ARCH: x64
|
|
steps:
|
|
- template: web/sql-product-build-web.yml
|
|
timeoutInMinutes: 90
|
|
|
|
- job: Docker
|
|
pool:
|
|
vmImage: 'Ubuntu-18.04'
|
|
container: linux-x64
|
|
dependsOn:
|
|
- LinuxWeb
|
|
steps:
|
|
- template: docker/sql-product-build-docker.yml
|
|
timeoutInMinutes: 90
|
|
|
|
trigger: none
|
|
pr: none
|