Commit graph

7 commits

Author SHA1 Message Date
sideshowbarker
13b609133d CI: Add wasm-tools to the build image
wasm-tools is needed at build time to generate the WebAssembly spec
tests (INCLUDE_WASM_SPEC_TESTS), and the setup action downloads it from
the bytecodealliance releases CDN for every build job. That CDN
intermittently returns 504, which fails otherwise-green CI runs.

Bake the pinned wasm-tools 1.243.0 into the ladybird-ci image so the
Linux container jobs, which are the bulk of the build matrix, get it
from the image instead of fetching it per run.

A follow-up will drop the per-job download for the container platforms
once this image is published. The macOS and Windows jobs run on native
runners that do not use this image, so they keep downloading the same
pinned version.
2026-06-18 22:44:40 +02:00
sideshowbarker
8121ff8278 CI: Bump base image to ubuntu:26.04; add AT-SPI2 deps
Required for Qt AT-SPI2 bridge tests. The 26.04 bump gets us Qt 6.10 (we
need ≥6.8) and Orca 50.1 (we need ≥47) directly from apt — so we don’t
need a separate Qt install or Orca overlay.

This also gets us both clang-21 and clang++-21 — because Ubuntu’s own
26.04 repo has those, and bundles both into the same package. So we no
longer need to add the apt.llvm.org repo to get those.
2026-05-13 16:23:47 +02:00
Jelle Raaijmakers
5dc83056f6 CI: Add rsync to the build image
Used by JamesIves/github-pages-deploy-action.
2026-05-04 16:18:23 +02:00
Jelle Raaijmakers
934b13b6fb CI: Add libclang-rt-dev to the build image
This is required for the sanitizer build.
2026-05-03 17:59:32 +02:00
Jelle Raaijmakers
6e50940b6b CI: Include dev dependencies for libclang and llvm in build image
Needed for the ENABLE_CLANG_PLUGINS=ON build.
2026-05-03 16:02:22 +02:00
Jelle Raaijmakers
e0108776fb CI: Update build image for linting, set explicit alternatives
Allows us to use this image for linting jobs as well. Also set explicit
alternatives for the toolchain, making the image authorative on the
versions being used. Switching between GCC and Clang is still possible
since both are present, but we no longer need to select the exact
versions.
2026-05-03 14:31:56 +02:00
Jelle Raaijmakers
9c6e814058 CI: Introduce build of new CI Docker image
The goal is to have a stable, reproducible build environment for Linux
amd64 and arm64 that we can simply pull in for CI build jobs. We've seen
that apt repositories can be temporarily unreachable or build dependency
versions are silently updated causing builds to fail. A nice benefit of
this is that we can skip most of the environment setup, which takes a
couple of minutes each run.
2026-05-02 15:52:44 +02:00