diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 506edde..f64f914 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -98,52 +98,52 @@ jobs: testResultsFiles: '**/TestResults*.xml' failTaskOnFailedTests: true - # - job: Ubuntu - # pool: - # vmImage: 'ubuntu-latest' + - job: Ubuntu + pool: + vmImage: 'ubuntu-latest' - # steps: - # - powershell: 'Install-Module -Name Pester -Force' - # displayName: 'Update Pester' - # - powershell: './CI/CI.ps1 -Test' - # displayName: 'Install and Test' + steps: + - powershell: 'Install-Module -Name Pester -Force' + displayName: 'Update Pester' + - powershell: './CI/CI.ps1 -Test' + displayName: 'Install and Test' - # - task: PublishTestResults@2 - # inputs: - # testResultsFormat: 'NUnit' - # testResultsFiles: '**/TestResults*.xml' - # failTaskOnFailedTests: true + - task: PublishTestResults@2 + inputs: + testResultsFormat: 'NUnit' + testResultsFiles: '**/TestResults*.xml' + failTaskOnFailedTests: true - # - job: macOS - # pool: - # vmImage: 'macOS-latest' + - job: macOS + pool: + vmImage: 'macOS-latest' - # steps: - # - script: brew install mono-libgdiplus - # displayName: 'Install mono-libgdiplus' - # - powershell: 'Install-Module -Name Pester -Force' - # displayName: 'Update Pester' - # - powershell: './CI/CI.ps1 -Test' - # displayName: 'Install and Test' + steps: + - script: brew install mono-libgdiplus + displayName: 'Install mono-libgdiplus' + - powershell: 'Install-Module -Name Pester -Force' + displayName: 'Update Pester' + - powershell: './CI/CI.ps1 -Test' + displayName: 'Install and Test' - # - task: PublishTestResults@2 - # inputs: - # testResultsFormat: 'NUnit' - # testResultsFiles: '**/TestResults*.xml' - # failTaskOnFailedTests: true + - task: PublishTestResults@2 + inputs: + testResultsFormat: 'NUnit' + testResultsFiles: '**/TestResults*.xml' + failTaskOnFailedTests: true - # - job: macOSNoDeps - # pool: - # vmImage: 'macOS-latest' + - job: macOSNoDeps + pool: + vmImage: 'macOS-latest' - # steps: - # - powershell: 'Install-Module -Name Pester -Force' - # displayName: 'Update Pester' - # - powershell: './CI/CI.ps1 -TestImportOnly' - # displayName: 'Install and Test Import Only' + steps: + - powershell: 'Install-Module -Name Pester -Force' + displayName: 'Update Pester' + - powershell: './CI/CI.ps1 -TestImportOnly' + displayName: 'Install and Test Import Only' - # - task: PublishTestResults@2 - # inputs: - # testResultsFormat: 'NUnit' - # testResultsFiles: '**/TestResults*.xml' - # failTaskOnFailedTests: true + - task: PublishTestResults@2 + inputs: + testResultsFormat: 'NUnit' + testResultsFiles: '**/TestResults*.xml' + failTaskOnFailedTests: true