Skip to content

Commit

Permalink
Merge pull request #59727 from Microsoft/use-linux-hosted-build-agents
Browse files Browse the repository at this point in the history
Use hosted build agents for Linux builds
  • Loading branch information
joaomoreno committed Oct 1, 2018
2 parents 5f642c0 + 3997d29 commit 4cb735f
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions build/tfs/product-build.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
resources:
containers:
- container: vscode-x64
image: joaomoreno/vscode-linux-build-agent:x64
- container: vscode-ia32
image: joaomoreno/vscode-linux-build-agent:ia32

jobs:
- job: Windows
condition: eq(variables['VSCODE_BUILD_WIN32'], 'true')
Expand All @@ -19,17 +26,21 @@ jobs:

- job: Linux
condition: eq(variables['VSCODE_BUILD_LINUX'], 'true')
pool: linux-x64
pool:
vmImage: 'Ubuntu-16.04'
variables:
VSCODE_ARCH: x64
container: vscode-x64
steps:
- template: linux/product-build-linux.yml

- job: Linux32
condition: eq(variables['VSCODE_BUILD_LINUX_32BIT'], 'true')
pool: linux-ia32
pool:
vmImage: 'Ubuntu-16.04'
variables:
VSCODE_ARCH: ia32
container: vscode-ia32
steps:
- template: linux/product-build-linux.yml

Expand Down

0 comments on commit 4cb735f

Please sign in to comment.