Implement ToggleEvent.source and the request-close command #14690
Workflow file for this run
This file contains hidden or 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: CI | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || format('{0}-{1}', github.ref, github.run_number) }} | |
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'] | |
arch: ['x86_64'] | |
build_preset: ['Sanitizer_CI'] | |
toolchain: ['GNU'] | |
clang_plugins: [false] | |
runner: ['blacksmith-16vcpu-ubuntu-2404'] | |
include: | |
- os_name: 'Linux' | |
arch: 'x86_64' | |
build_preset: 'Sanitizer_CI' | |
toolchain: 'Clang' | |
clang_plugins: true | |
runner: 'blacksmith-16vcpu-ubuntu-2404' | |
- os_name: 'macOS' | |
arch: 'arm64' | |
build_preset: 'Sanitizer_CI' | |
toolchain: 'Clang' | |
clang_plugins: false | |
runner: 'macos-15' | |
- os_name: 'Linux' | |
arch: 'x86_64' | |
build_preset: 'Fuzzers_CI' | |
toolchain: 'Clang' | |
clang_plugins: false | |
runner: 'blacksmith-16vcpu-ubuntu-2404' | |
uses: ./.github/workflows/lagom-template.yml | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
os_name: ${{ matrix.os_name }} | |
runner: ${{ matrix.runner }} | |
arch: ${{ matrix.arch }} | |
build_preset: ${{ matrix.build_preset }} | |
clang_plugins: ${{ matrix.clang_plugins }} |