File size: 432 Bytes
fc0f7bd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # Nightly performance test pipeline
trigger: none # No CI build
pr: # run on PRs only if perf tests were changed
branches:
include:
- master
paths:
include:
- test/perf/*
schedules:
- cron: "0 6 * * *" # Time is UTC
displayName: Nightly Perf Test
branches:
include:
- master
always: true
jobs:
- template: templates/perf-tests-job-template.yml
parameters:
vmImage: 'vs2017-win2016' |