diff --git a/CI/stage_templates/run_tests_on_pool.yml b/CI/stage_templates/run_tests_on_pool.yml index f1959eb..898be51 100644 --- a/CI/stage_templates/run_tests_on_pool.yml +++ b/CI/stage_templates/run_tests_on_pool.yml @@ -32,23 +32,39 @@ stages: framework: 'net472' architecture: '' buildConfiguration: $(Configuration) - # Windows .NET Core x64 Tests - - template: ../job_templates/test_drawing_libraries.yml - parameters: - name: UnitTest${{ parameters.OSPlatform }}netcore - OSPlatform: ${{ parameters.OSPlatform }} - framework: 'netcoreapp3.1' - architecture: '' - buildConfiguration: $(Configuration) - # Windows .NET Core x86 Tests - - template: ../job_templates/test_drawing_libraries.yml - parameters: - name: UnitTest${{ parameters.OSPlatform }}netcorex86 - OSPlatform: ${{ parameters.OSPlatform }} - framework: 'netcoreapp3.1' - architecture: '.x86' - buildConfiguration: $(Configuration) - # Windows .NET 5.0 Tests + # Windows .NET Core x64 Tests + - template: ../job_templates/test_drawing_libraries.yml + parameters: + name: UnitTest${{ parameters.OSPlatform }}netcore + OSPlatform: ${{ parameters.OSPlatform }} + framework: 'netcoreapp3.1' + architecture: '' + buildConfiguration: $(Configuration) + # Windows .NET Core x86 Tests + - template: ../job_templates/test_drawing_libraries.yml + parameters: + name: UnitTest${{ parameters.OSPlatform }}netcorex86 + OSPlatform: ${{ parameters.OSPlatform }} + framework: 'netcoreapp3.1' + architecture: '.x86' + buildConfiguration: $(Configuration) + # Windows .NET 6.0 x86 Tests + - template: ../job_templates/test_drawing_libraries.yml + parameters: + name: UnitTest${{ parameters.OSPlatform }}net60x86 + OSPlatform: ${{ parameters.OSPlatform }} + framework: 'net60' + architecture: '.x86' + buildConfiguration: $(Configuration) + # Windows .NET 7.0 x86 Tests + - template: ../job_templates/test_drawing_libraries.yml + parameters: + name: UnitTest${{ parameters.OSPlatform }}net70x86 + OSPlatform: ${{ parameters.OSPlatform }} + framework: 'net70' + architecture: '.x86' + buildConfiguration: $(Configuration) + # .NET 5.0 Tests - template: ../job_templates/test_drawing_libraries.yml parameters: name: UnitTest${{ parameters.OSPlatform }}net50 @@ -56,7 +72,7 @@ stages: framework: 'net50' architecture: '' buildConfiguration: $(Configuration) - # Windows .NET 6.0 x64 Tests + # .NET 6.0 x64 Tests - template: ../job_templates/test_drawing_libraries.yml parameters: name: UnitTest${{ parameters.OSPlatform }}net60 @@ -64,15 +80,7 @@ stages: framework: 'net60' architecture: '' buildConfiguration: $(Configuration) - # Windows .NET 6.0 x86 Tests - - template: ../job_templates/test_drawing_libraries.yml - parameters: - name: UnitTest${{ parameters.OSPlatform }}net60x86 - OSPlatform: ${{ parameters.OSPlatform }} - framework: 'net60' - architecture: '.x86' - buildConfiguration: $(Configuration) - # Windows .NET 7.0 x64 Tests + # .NET 7.0 x64 Tests - template: ../job_templates/test_drawing_libraries.yml parameters: name: UnitTest${{ parameters.OSPlatform }}net70 @@ -80,11 +88,3 @@ stages: framework: 'net70' architecture: '' buildConfiguration: $(Configuration) - # Windows .NET 7.0 x86 Tests - - template: ../job_templates/test_drawing_libraries.yml - parameters: - name: UnitTest${{ parameters.OSPlatform }}net70x86 - OSPlatform: ${{ parameters.OSPlatform }} - framework: 'net70' - architecture: '.x86' - buildConfiguration: $(Configuration)