mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-15 07:09:43 +03:00
b996e15d9d
We removed this file in 0a7d0362ea
but
forgot to update the nightly job.
29 lines
631 B
YAML
29 lines
631 B
YAML
# 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: SerenityOS_Coverage
|
|
dependsOn: []
|
|
jobs:
|
|
- template: Serenity.yml
|
|
parameters:
|
|
arch: 'x86_64'
|
|
coverage: 'ON'
|
|
|
|
- stage: Lagom_Android
|
|
dependsOn: []
|
|
jobs:
|
|
- template: Lagom.yml
|
|
parameters:
|
|
os: 'Android'
|