blob: ac76cf7772f5840516ae29cdc2e9fe89331e1cba (
plain)
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
26
27
28
29
30
31
32
33
|
# Pipeline definition for nightly or other scheduled jobs we don't want to run on every PR in Azure
schedules:
- cron: "0 0 * * *"
displayName: Daily midnight build
branches:
include:
- master
# Github YAML pipelines have CI and PR triggers on by default.
# We only want this pipeline to run nightly
pr: none
trigger: none
stages:
- stage: Toolchain
dependsOn: []
jobs:
- template: Toolchain.yml
- stage: SerenityOS_Coverage
dependsOn: Toolchain
jobs:
- template: Serenity.yml
parameters:
arch: 'x86_64'
coverage: 'ON'
- stage: Lagom_Android
dependsOn: []
jobs:
- template: Lagom.yml
parameters:
os: 'Android'
|