mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-07 00:56:14 +00:00
37 lines
847 B
YAML
37 lines
847 B
YAML
name: Nightly CI
|
|
|
|
on:
|
|
# Automatically run at the end of every day.
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || format('{0}-{1}', github.ref, github.run_number) }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
CodeCoverage:
|
|
if: always() && github.repository == 'SerenityOS/serenity' && github.ref == 'refs/heads/master'
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
|
|
uses: ./.github/workflows/serenity-template.yml
|
|
with:
|
|
toolchain: 'Clang'
|
|
os: ubuntu-22.04
|
|
arch: 'x86_64'
|
|
coverage: 'ON'
|
|
|
|
LagomGCC:
|
|
if: always() && github.repository == 'SerenityOS/serenity' && github.ref == 'refs/heads/master'
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
|
|
uses: ./.github/workflows/lagom-template.yml
|
|
with:
|
|
toolchain: 'GNU'
|
|
os_name: 'Linux'
|
|
os: ubuntu-22.04
|