|
|
@@ -54,10 +54,11 @@ jobs:
|
|
|
timeoutInMinutes: 120
|
|
|
steps:
|
|
|
# Build the shared framework
|
|
|
- - script: ./eng/build.cmd -ci -nobl -all -pack -arch x64
|
|
|
+ - script: ./eng/build.cmd -ci -nobl -all -noBuildJava -pack -arch x64
|
|
|
/p:CrossgenOutput=false /p:ASPNETCORE_TEST_LOG_DIR=artifacts/log
|
|
|
displayName: Build shared fx
|
|
|
- - script: ./eng/build.cmd -ci -nobl -noBuildRepoTasks -noRestore -test -all -noBuildJava -noBuildNative
|
|
|
+ # -noBuildRepoTasks -noBuildNative -noBuild to avoid repeating work done in the previous step.
|
|
|
+ - script: ./eng/build.cmd -ci -nobl -all -noBuildRepoTasks -noBuildNative -noBuild -noBuildJava -test
|
|
|
-projects eng\helix\helix.proj /p:IsHelixPRCheck=true /p:RunQuarantinedTests=true /p:IsHelixJob=true
|
|
|
/p:CrossgenOutput=false /p:ASPNETCORE_TEST_LOG_DIR=artifacts/log
|
|
|
displayName: Run build.cmd helix target
|
|
|
@@ -79,9 +80,10 @@ jobs:
|
|
|
isAzDOTestingJob: true
|
|
|
enablePublishTestResults: false
|
|
|
steps:
|
|
|
- - powershell: "& ./eng/build.ps1 -CI -nobl -all -pack -NoBuildJava"
|
|
|
+ - script: ./eng/build.cmd -ci -nobl -all -noBuildJava -pack
|
|
|
displayName: Build
|
|
|
- - script: ./eng/build.cmd -ci -nobl -test -NoRestore -NoBuild -NoBuilddeps "/p:RunQuarantinedTests=true /p:SkipHelixReadyTests=true"
|
|
|
+ - script: ./eng/build.cmd -ci -nobl -all -noBuildRepoTasks -noBuildNative -NoBuild -noBuildJava -test
|
|
|
+ /p:RunQuarantinedTests=true /p:SkipHelixReadyTests=true
|
|
|
displayName: Run Quarantined Tests
|
|
|
continueOnError: true
|
|
|
- task: PublishTestResults@2
|
|
|
@@ -112,9 +114,10 @@ jobs:
|
|
|
isAzDOTestingJob: true
|
|
|
enablePublishTestResults: false
|
|
|
steps:
|
|
|
- - bash: ./eng/build.sh --all --pack --ci --nobl --no-build-java
|
|
|
+ - bash: ./eng/build.sh --ci --nobl --all --no-build-java --pack
|
|
|
displayName: Build
|
|
|
- - bash: ./eng/build.sh --no-build --ci --nobl --test -p:RunQuarantinedTests=true -p:SkipHelixReadyTests=true
|
|
|
+ - bash: ./eng/build.sh --ci --nobl --all --no-build-repo-tasks --no-build --no-build-java --test
|
|
|
+ -p:RunQuarantinedTests=true -p:SkipHelixReadyTests=true
|
|
|
displayName: Run Quarantined Tests
|
|
|
continueOnError: true
|
|
|
- task: PublishTestResults@2
|
|
|
@@ -146,9 +149,10 @@ jobs:
|
|
|
enablePublishTestResults: false
|
|
|
useHostedUbuntu: false
|
|
|
steps:
|
|
|
- - bash: ./eng/build.sh --all --pack --ci --nobl --no-build-java
|
|
|
+ - bash: ./eng/build.sh --ci --nobl --all --no-build-java --pack
|
|
|
displayName: Build
|
|
|
- - bash: ./eng/build.sh --no-build --ci --nobl --test -p:RunQuarantinedTests=true -p:SkipHelixReadyTests=true
|
|
|
+ - bash: ./eng/build.sh --ci --nobl --all --no-build-repo-tasks --no-build --no-build-java --test
|
|
|
+ -p:RunQuarantinedTests=true -p:SkipHelixReadyTests=true
|
|
|
displayName: Run Quarantined Tests
|
|
|
continueOnError: true
|
|
|
- task: PublishTestResults@2
|