Nightly Lagom #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nightly Lagom | |
on: | |
# Automatically run at the end of every day. | |
schedule: | |
- cron: '0 0 * * *' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
# CI matrix - runs the job in lagom-template.yml with different configurations. | |
Lagom: | |
if: github.repository == 'LadybirdBrowser/ladybird' | |
strategy: | |
fail-fast: false | |
matrix: | |
os_name: ['Linux'] | |
os: [ubuntu-24.04-arm] | |
arch: ['arm64'] | |
build_preset: ['Sanitizer_CI'] | |
toolchain: ['Clang'] | |
clang_plugins: [false] | |
include: | |
- os_name: 'Linux' | |
os: ubuntu-24.04 | |
arch: 'x86_64' | |
build_preset: 'Distribution_CI' | |
toolchain: 'GNU' | |
clang_plugins: false | |
- os_name: 'macOS' | |
os: macos-15 | |
arch: 'arm64' | |
build_preset: 'Distribution_CI' | |
toolchain: 'Clang' | |
clang_plugins: false | |
- os_name: 'Linux' | |
os: ubuntu-24.04-arm | |
arch: 'arm64' | |
build_preset: 'Distribution_CI' | |
toolchain: 'Clang' | |
clang_plugins: false | |
uses: ./.github/workflows/lagom-template.yml | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
os_name: ${{ matrix.os_name }} | |
os: ${{ matrix.os }} | |
arch: ${{ matrix.arch }} | |
build_preset: ${{ matrix.build_preset }} | |
clang_plugins: ${{ matrix.clang_plugins }} |