NightOwl888 commented on code in PR #1052: URL: https://github.com/apache/lucenenet/pull/1052#discussion_r1866977221
########## azure-pipelines.yml: ########## @@ -326,6 +335,66 @@ stages: displayName: 'Test Stage:' jobs: + - job: Test_net9_0_x64 + condition: and(succeeded(), ne(variables['RunTests'], 'false')) + strategy: + matrix: + Windows: + osName: 'Windows' + imageName: 'windows-latest' + maximumParallelJobs: 8 + maximumAllowedFailures: 0 # Maximum allowed failures for a successful build + Linux: + osName: 'Linux' + imageName: 'ubuntu-latest' + maximumParallelJobs: 7 + maximumAllowedFailures: 0 # Maximum allowed failures for a successful build + macOS: + osName: 'macOS' + imageName: 'macOS-latest' + maximumParallelJobs: 7 + maximumAllowedFailures: 0 # Maximum allowed failures for a successful build + displayName: 'Test net9.0,x64 on' + pool: + vmImage: $(imageName) + steps: + - template: '.build/azure-templates/run-tests-on-os.yml' + parameters: + osName: $(osName) + framework: 'net9.0' + vsTestPlatform: 'x64' + testBinariesArtifactName: '$(TestBinariesArtifactName)' + nugetArtifactName: '$(NuGetArtifactName)' + testResultsArtifactName: '$(TestResultsArtifactName)' + maximumParallelJobs: $(maximumParallelJobs) + maximumAllowedFailures: $(maximumAllowedFailures) + dotNetSdkVersion: '$(DotNetSDKVersion)' + + - job: Test_net9_0_x86 # Only run Nightly or if explicitly enabled with RunX86Tests + condition: and(succeeded(), ne(variables['RunTests'], 'false'), or(eq(variables['IsNightly'], 'true'), eq(variables['RunX86Tests'], 'true'))) + strategy: + matrix: + Windows: + osName: 'Windows' + imageName: 'windows-2019' Review Comment: So, yet another reason why testing the NuGet packages instead of publishing would be a good idea. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@lucenenet.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org