75 lines
2.8 KiB
YAML
75 lines
2.8 KiB
YAML
# We only want to run quarantined tests on master
|
|
pr: none
|
|
trigger: none
|
|
|
|
schedules:
|
|
- cron: "0 18 * * *"
|
|
displayName: Run tests once a day at 11 PM
|
|
branches:
|
|
include:
|
|
- master
|
|
always: true
|
|
|
|
variables:
|
|
- ${{ if ne(variables['System.TeamProject'], 'internal') }}:
|
|
- name: _UseHelixOpenQueues
|
|
value: 'true'
|
|
- ${{ if eq(variables['System.TeamProject'], 'internal') }}:
|
|
- group: DotNet-HelixApi-Access
|
|
- name: _UseHelixOpenQueues
|
|
value: 'false'
|
|
|
|
jobs:
|
|
- template: jobs/default-build.yml
|
|
parameters:
|
|
jobName: Helix_quarantined_x64
|
|
jobDisplayName: 'Tests: Helix'
|
|
agentOs: Windows
|
|
timeoutInMinutes: 480
|
|
steps:
|
|
# Build the shared framework
|
|
- script: ./build.cmd -ci -nobl -all -pack -arch x64
|
|
/p:CrossgenOutput=false /p:ASPNETCORE_TEST_LOG_DIR=artifacts/log
|
|
displayName: Build shared fx
|
|
- script: ./build.cmd -ci -nobl -noBuildRepoTasks -restore -noBuild -noBuildNative -projects src/Grpc/**/*.csproj
|
|
/p:CrossgenOutput=false /p:ASPNETCORE_TEST_LOG_DIR=artifacts/log
|
|
displayName: Restore interop projects
|
|
- script: ./build.cmd -ci -nobl -noBuildRepoTasks -noRestore -test -all -noBuildJava -noBuildNative
|
|
-projects eng\helix\helix.proj /p:IsHelixDaily=true /p:RunQuarantinedTests=true /p:IsRequiredCheck=true
|
|
/p:IsHelixJob=true /p:BuildInteropProjects=true /p:RunTemplateTests=true
|
|
/p:CrossgenOutput=false /p:ASPNETCORE_TEST_LOG_DIR=artifacts/log
|
|
displayName: Run build.cmd helix target
|
|
continueOnError: true
|
|
env:
|
|
HelixApiAccessToken: $(HelixApiAccessToken) # Needed for internal queues
|
|
SYSTEM_ACCESSTOKEN: $(System.AccessToken) # We need to set this env var to publish helix results to Azure Dev Ops
|
|
artifacts:
|
|
- name: Helix_logs
|
|
path: artifacts/log/
|
|
publishOnError: true
|
|
|
|
# Helix ARM64
|
|
- template: jobs/default-build.yml
|
|
parameters:
|
|
jobName: Helix_quarantined_arm64
|
|
jobDisplayName: "Tests: Helix ARM64"
|
|
agentOs: Linux
|
|
timeoutInMinutes: 480
|
|
steps:
|
|
- script: ./restore.sh --ci --nobl --arch arm64
|
|
displayName: Restore
|
|
- script: ./build.sh --ci --nobl --arch arm64 --noBuildRepoTasks --no-build-nodejs --no-restore --test --all
|
|
--projects $(Build.SourcesDirectory)/eng/helix/helix.proj /p:IsHelixJob=true /p:IsHelixDaily=true
|
|
/p:RunQuarantinedTests=true /p:ASPNETCORE_TEST_LOG_DIR=artifacts/log
|
|
displayName: Run build.sh helix arm64 target
|
|
continueOnError: true
|
|
env:
|
|
HelixApiAccessToken: $(HelixApiAccessToken) # Needed for internal queues
|
|
SYSTEM_ACCESSTOKEN: $(System.AccessToken) # We need to set this env var to publish helix results to Azure Dev Ops
|
|
installNodeJs: false
|
|
artifacts:
|
|
- name: Helix_arm64_logs
|
|
path: artifacts/log/
|
|
publishOnError: true
|
|
includeForks: true
|