Skip to content

Commit

Permalink
disable arm and alpine for stable
Browse files Browse the repository at this point in the history
fixes #76159
  • Loading branch information
joaomoreno committed Jun 26, 2019
1 parent 30b6b2e commit 86306cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/azure-pipelines/product-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- template: linux/snap-build-linux.yml

- job: LinuxArmhf
condition: eq(variables['VSCODE_BUILD_LINUX_ARMHF'], 'true')
condition: and(eq(variables['VSCODE_BUILD_LINUX_ARMHF'], 'true'), ne(variables['VSCODE_QUALITY'], 'stable'))
timeoutInMinutes: 120
pool:
vmImage: 'Ubuntu-16.04'
Expand All @@ -61,7 +61,7 @@ jobs:
- template: linux/product-build-linux-arm.yml

- job: LinuxAlpine
condition: eq(variables['VSCODE_BUILD_LINUX_ALPINE'], 'true')
condition: and(eq(variables['VSCODE_BUILD_LINUX_ALPINE'], 'true'), ne(variables['VSCODE_QUALITY'], 'stable')))
timeoutInMinutes: 120
pool:
vmImage: 'Ubuntu-16.04'
Expand Down

0 comments on commit 86306cc

Please sign in to comment.