mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
d389fb440f
This will prevent CI from running if: - the only changes included are under the Documentation folder, or - the only changes included are *.md files in the root See: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#example-excluding-paths
55 lines
1.3 KiB
YAML
55 lines
1.3 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- 'Documentation/**'
|
|
- '*.md'
|
|
pull_request:
|
|
paths-ignore:
|
|
- 'Documentation/**'
|
|
- '*.md'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || format('{0}-{1}', github.ref, github.run_number) }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
Lagom:
|
|
if: github.repository == 'LadybirdBrowser/ladybird'
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os_name: ['Linux']
|
|
os: [ubuntu-24.04]
|
|
fuzzer: ['NO_FUZZ']
|
|
toolchain: ['GNU']
|
|
clang_plugins: [false]
|
|
|
|
include:
|
|
- os_name: 'Linux'
|
|
os: ubuntu-24.04
|
|
fuzzer: 'NO_FUZZ'
|
|
toolchain: 'Clang'
|
|
clang_plugins: true
|
|
|
|
- os_name: 'macOS'
|
|
os: macos-15
|
|
fuzzer: 'NO_FUZZ'
|
|
toolchain: 'Clang'
|
|
clang_plugins: false
|
|
|
|
- os_name: 'Linux'
|
|
os: ubuntu-24.04
|
|
fuzzer: 'FUZZ'
|
|
toolchain: 'Clang'
|
|
clang_plugins: false
|
|
|
|
uses: ./.github/workflows/lagom-template.yml
|
|
with:
|
|
toolchain: ${{ matrix.toolchain }}
|
|
os_name: ${{ matrix.os_name }}
|
|
os: ${{ matrix.os }}
|
|
fuzzer: ${{ matrix.fuzzer }}
|
|
clang_plugins: ${{ matrix.clang_plugins }}
|