2019-04-26 18:27:27 +03:00
|
|
|
trigger:
|
2019-06-04 00:24:02 +03:00
|
|
|
batch: true
|
2019-04-26 18:27:27 +03:00
|
|
|
branches:
|
|
|
|
include:
|
2020-01-30 17:17:03 +03:00
|
|
|
- master
|
2020-06-25 15:15:07 +03:00
|
|
|
- 'refs/tags/ccf-*'
|
2019-06-24 15:44:27 +03:00
|
|
|
|
|
|
|
pr:
|
|
|
|
autoCancel: true
|
|
|
|
branches:
|
|
|
|
include:
|
|
|
|
- master
|
|
|
|
paths:
|
|
|
|
include:
|
|
|
|
- '*'
|
2019-04-26 18:27:27 +03:00
|
|
|
|
2019-06-26 14:59:26 +03:00
|
|
|
schedules:
|
2019-06-27 15:06:46 +03:00
|
|
|
- cron: "0 3 * * Mon-Fri"
|
2019-06-26 14:59:26 +03:00
|
|
|
displayName: Daily morning build
|
|
|
|
branches:
|
|
|
|
include:
|
|
|
|
- master
|
|
|
|
always: true
|
|
|
|
|
2019-10-16 15:57:17 +03:00
|
|
|
resources:
|
|
|
|
containers:
|
|
|
|
- container: nosgx
|
2020-10-15 18:57:56 +03:00
|
|
|
image: ccfciteam/ccf-ci:vegeta
|
2020-07-22 12:55:59 +03:00
|
|
|
options: --publish-all --cap-add SYS_PTRACE -v /dev/shm:/tmp/ccache -v /lib/modules:/lib/modules:ro
|
2019-10-16 15:57:17 +03:00
|
|
|
|
|
|
|
- container: sgx
|
2020-10-15 18:57:56 +03:00
|
|
|
image: ccfciteam/ccf-ci:vegeta
|
2020-07-22 12:55:59 +03:00
|
|
|
options: --publish-all --device /dev/sgx:/dev/sgx -v /dev/shm:/tmp/ccache -v /lib/modules:/lib/modules:ro
|
2019-10-16 15:57:17 +03:00
|
|
|
|
2020-01-30 17:17:03 +03:00
|
|
|
variables:
|
2020-06-25 15:10:04 +03:00
|
|
|
${{ if startsWith(variables['Build.SourceBranch'], 'refs/tags/ccf-') }}:
|
2020-01-30 17:17:03 +03:00
|
|
|
perf_or_release: release
|
2020-06-25 15:10:04 +03:00
|
|
|
${{ if not(startsWith(variables['Build.SourceBranch'], 'refs/tags/ccf-')) }}:
|
2020-01-30 17:17:03 +03:00
|
|
|
perf_or_release: perf
|
|
|
|
|
2019-04-26 18:27:27 +03:00
|
|
|
jobs:
|
2019-10-16 15:57:17 +03:00
|
|
|
- template: .azure-pipelines-templates/matrix.yml
|
2020-01-30 17:17:03 +03:00
|
|
|
parameters:
|
|
|
|
perf_or_release: ${{ variables['perf_or_release'] }}
|