Skip to content

Commit

Permalink
replace queue with new pool syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
vtbassmatt committed Dec 3, 2018
1 parent e33692c commit b14f95c
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 36 deletions.
12 changes: 6 additions & 6 deletions azure-pipelines-integration.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
phases:
- phase: Windows_VisualStudio_Integration_Tests
queue:
name: dotnet-external-temp-vs2017
timeoutInMinutes: 90
parallel: 2
jobs:
- job: Windows_VisualStudio_Integration_Tests
pool: dotnet-external-temp-vs2017
strategy:
maxParallel: 2
matrix:
debug:
_configuration: Debug
release:
_configuration: Release
timeoutInMinutes: 90

steps:
- script: build/scripts/cibuild.cmd -configuration $(_configuration) -testVsi
Expand Down
56 changes: 26 additions & 30 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
phases:
- phase: Windows_Desktop_Unit_Tests
queue:
name: dotnet-external-temp
timeoutInMinutes: 90
parallel: 4
jobs:
- job: Windows_Desktop_Unit_Tests
pool: dotnet-external-temp
strategy:
maxParallel: 4
matrix:
debug_32:
_configuration: Debug
Expand All @@ -17,6 +16,7 @@ phases:
release_64:
_configuration: Release
_testKind: Test64
timeoutInMinutes: 90

steps:
- script: build/scripts/cibuild.cmd -configuration $(_configuration) -testDesktop -$(_testKind)
Expand All @@ -39,10 +39,9 @@ phases:
continueOnError: true
condition: not(succeeded())

- phase: Windows_Desktop_Spanish_Unit_Tests
queue:
name: dnceng-windows-spanish-external-temp
timeoutInMinutes: 90
- job: Windows_Desktop_Spanish_Unit_Tests
pool: dnceng-windows-spanish-external-temp
timeoutInMinutes: 90

steps:
- script: build/scripts/cibuild.cmd -configuration Debug -testDesktop
Expand All @@ -64,16 +63,16 @@ phases:
continueOnError: true
condition: failed()

- phase: Windows_CoreClr_Unit_Tests
queue:
name: dotnet-external-temp
timeoutInMinutes: 90
parallel: 2
- job: Windows_CoreClr_Unit_Tests
pool: dotnet-external-temp
strategy:
maxParallel: 2
matrix:
debug:
_configuration: Debug
release:
_configuration: Release
timeoutInMinutes: 90

steps:
- script: build/scripts/cibuild.cmd -configuration $(_configuration) -testCoreClr -buildCoreClr
Expand All @@ -95,11 +94,10 @@ phases:
publishLocation: Container
continueOnError: true
condition: not(succeeded())

- phase: Windows_Determinism_Test
queue:
name: dotnet-external-temp
timeoutInMinutes: 90

- job: Windows_Determinism_Test
pool: dotnet-external-temp
timeoutInMinutes: 90
steps:
- script: build/scripts/cibuild.cmd -testDeterminism
displayName: Build - Validate determinism
Expand All @@ -113,10 +111,9 @@ phases:
continueOnError: true
condition: not(succeeded())

- phase: Windows_Correctness_Test
queue:
name: dotnet-external-temp
timeoutInMinutes: 90
- job: Windows_Correctness_Test
pool: dotnet-external-temp
timeoutInMinutes: 90
steps:
- script: build/scripts/test-build-correctness.cmd -configuration Release -cibuild
displayName: Build - Validate correctness
Expand All @@ -130,11 +127,10 @@ phases:
continueOnError: true
condition: not(succeeded())

- phase: Linux_Test
queue:
name: DotNetCore-Linux
timeoutInMinutes: 90
parallel: 2
- job: Linux_Test
pool: DotNetCore-Linux
strategy:
maxParallel: 2
matrix:
coreclr:
_args: --configuration Debug
Expand All @@ -143,7 +139,7 @@ phases:
mono:
_args: --configuration Debug --docker --mono
_name: Mono
_configuration: Debug
timeoutInMinutes: 90
steps:
- script: ./build/scripts/cibuild.sh $(_args)
displayName: Build and Test
Expand Down

0 comments on commit b14f95c

Please sign in to comment.