Bump the workflow image pin to the 2026.06.14 tag that bakes in wasm-tools. And keep the wasm-tools download/caching steps for the macOS and Windows jobs — but skip those steps on Linux. So, the Linux jobs use the wasm-tools copy the image installs. Follow-up to https://github.com/LadybirdBrowser/ladybird/pull/9972
91 lines
2.7 KiB
YAML
91 lines
2.7 KiB
YAML
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'
|
|
name: ${{ matrix.os_name }}, ${{ matrix.arch }}, ${{ matrix.build_preset }}, ${{ matrix.toolchain }}
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os_name: ['Linux']
|
|
arch: ['arm64']
|
|
build_preset: ['Sanitizer']
|
|
toolchain: ['Clang']
|
|
clang_plugins: [false]
|
|
runner_labels: ['["blacksmith-8vcpu-ubuntu-2404-arm"]']
|
|
container: [&ci_container '{"image":"ghcr.io/ladybirdbrowser/ladybird-ci:2026.06.14"}']
|
|
|
|
include:
|
|
- os_name: 'Linux'
|
|
arch: 'x86_64'
|
|
build_preset: 'Distribution'
|
|
toolchain: 'GNU'
|
|
clang_plugins: false
|
|
runner_labels: '["blacksmith-8vcpu-ubuntu-2404"]'
|
|
container: *ci_container
|
|
|
|
- os_name: 'macOS'
|
|
arch: 'arm64'
|
|
build_preset: 'Distribution'
|
|
toolchain: 'Clang'
|
|
clang_plugins: false
|
|
runner_labels: '["macos-26", "self-hosted"]'
|
|
container: 'null'
|
|
|
|
- os_name: 'Linux'
|
|
arch: 'arm64'
|
|
build_preset: 'Distribution'
|
|
toolchain: 'Clang'
|
|
clang_plugins: false
|
|
runner_labels: '["blacksmith-8vcpu-ubuntu-2404-arm"]'
|
|
container: *ci_container
|
|
|
|
- os_name: 'Windows'
|
|
arch: 'x86_64'
|
|
build_preset: 'Sanitizer'
|
|
toolchain: 'ClangCL'
|
|
clang_plugins: false
|
|
runner_labels: '["blacksmith-8vcpu-windows-2025"]'
|
|
container: 'null'
|
|
|
|
secrets: inherit
|
|
uses: ./.github/workflows/lagom-template.yml
|
|
with:
|
|
toolchain: ${{ matrix.toolchain }}
|
|
os_name: ${{ matrix.os_name }}
|
|
runner_labels: ${{ matrix.runner_labels }}
|
|
arch: ${{ matrix.arch }}
|
|
build_preset: ${{ matrix.build_preset }}
|
|
clang_plugins: ${{ matrix.clang_plugins }}
|
|
container: ${{ matrix.container }}
|
|
|
|
flatpak:
|
|
if: github.repository == 'LadybirdBrowser/ladybird'
|
|
name: Flatpak ${{ matrix.arch }}
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
arch: ['x86_64']
|
|
runner_labels: ['["blacksmith-8vcpu-ubuntu-2404"]']
|
|
|
|
include:
|
|
- arch: 'aarch64'
|
|
runner_labels: '["blacksmith-8vcpu-ubuntu-2404-arm"]'
|
|
|
|
secrets: inherit
|
|
uses: ./.github/workflows/flatpak-template.yml
|
|
with:
|
|
arch: ${{ matrix.arch }}
|
|
runner_labels: ${{ matrix.runner_labels }}
|