From c2e56277c13edab897a384bb1068a8f3320b5706 Mon Sep 17 00:00:00 2001 From: sakno Date: Sun, 29 Dec 2024 14:28:37 +0200 Subject: [PATCH] Run AOT tests on Linux --- azure-pipelines.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) 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: