diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 636126f22..79b7234c8 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -24,18 +24,6 @@ stages: projects: '$(Solution)' feedsToUse: 'config' nugetConfigPath: 'NuGet.config' - - task: DotNetCoreCLI@2 - displayName: Publish AOT Tests - inputs: - command: publish - publishWebProjects: false - projects: $(AotTestProject) - arguments: --configuration Release --output $(AotTestFolder)/bin/aot-tests - - task: CmdLine@2 - displayName: Run AOT Tests - inputs: - workingDirectory: $(AotTestFolder)/bin/aot-tests - script: start /b DotNext.AotTests.exe - task: DotNetCoreCLI@2 displayName: Test Debug inputs: @@ -61,6 +49,18 @@ stages: feedsToUse: 'config' nugetConfigPath: 'NuGet.config' arguments: --configuration Debug + - task: DotNetCoreCLI@2 + displayName: Publish AOT Tests + inputs: + command: publish + publishWebProjects: false + projects: $(AotTestProject) + arguments: --configuration Release --output $(AotTestFolder)/bin/aot-tests + - task: CmdLine@2 + displayName: Run AOT Tests + inputs: + workingDirectory: $(AotTestFolder)/bin/aot-tests + script: ./DotNext.AotTests - task: DotNetCoreCLI@2 displayName: Test Debug inputs: