163 lines
4.1 KiB
YAML
163 lines
4.1 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main, develop]
|
|
pull_request:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ci-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Rule R2 — PDFium boundary check
|
|
run: bash scripts/check_pdfium_boundary.sh
|
|
|
|
- name: Install clang-format (pinned)
|
|
run: pipx install clang-format==22.1.5
|
|
|
|
- name: clang-format
|
|
run: |
|
|
clang-format --version
|
|
find engine \( -name '*.cpp' -o -name '*.cc' -o -name '*.h' -o -name '*.hpp' \) \
|
|
-print0 | xargs -0 clang-format --dry-run --Werror
|
|
|
|
build:
|
|
needs: lint
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- os: ubuntu-latest
|
|
preset: linux-debug
|
|
- os: macos-latest
|
|
preset: macos-debug
|
|
experimental: true
|
|
- os: windows-latest
|
|
preset: windows-debug
|
|
runs-on: ${{ matrix.os }}
|
|
continue-on-error: ${{ matrix.experimental == true }}
|
|
env:
|
|
VCPKG_DEFAULT_BINARY_CACHE: ${{ github.workspace }}/.vcpkg-cache
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install Ninja
|
|
uses: seanmiddleditch/gha-setup-ninja@v5
|
|
|
|
- name: Set up MSVC environment
|
|
if: runner.os == 'Windows'
|
|
uses: ilammy/msvc-dev-cmd@v1
|
|
|
|
- name: Locate vcpkg
|
|
shell: bash
|
|
run: |
|
|
echo "VCPKG_ROOT=$VCPKG_INSTALLATION_ROOT" >> "$GITHUB_ENV"
|
|
git -C "$VCPKG_INSTALLATION_ROOT" fetch --quiet origin || true
|
|
|
|
- name: Create vcpkg binary cache dir
|
|
shell: bash
|
|
run: mkdir -p "$VCPKG_DEFAULT_BINARY_CACHE"
|
|
|
|
- name: Cache vcpkg artifacts
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ${{ env.VCPKG_DEFAULT_BINARY_CACHE }}
|
|
key: vcpkg-${{ matrix.os }}-${{ hashFiles('vcpkg.json') }}
|
|
restore-keys: vcpkg-${{ matrix.os }}-
|
|
|
|
- name: Pin vcpkg dependency baseline
|
|
shell: bash
|
|
run: |
|
|
if ! grep -q '"builtin-baseline"' vcpkg.json; then
|
|
"$VCPKG_ROOT/vcpkg" x-update-baseline --add-initial-baseline
|
|
fi
|
|
|
|
- name: Configure
|
|
run: cmake --preset ${{ matrix.preset }}
|
|
|
|
- name: Build
|
|
run: cmake --build --preset ${{ matrix.preset }}
|
|
|
|
- name: Test
|
|
run: ctest --preset ${{ matrix.preset }}
|
|
|
|
gateway:
|
|
needs: lint
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: gateway
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.11"
|
|
cache: pip
|
|
cache-dependency-path: gateway/pyproject.toml
|
|
|
|
- name: Install gateway (editable, with dev extras)
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
python -m pip install -e ".[dev]"
|
|
|
|
- name: Ruff — lint
|
|
run: python -m ruff check .
|
|
|
|
- name: Ruff — format check
|
|
run: python -m ruff format --check .
|
|
|
|
- name: Pytest
|
|
run: python -m pytest
|
|
|
|
|
|
wasm:
|
|
needs: lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Read pinned emsdk version
|
|
id: emsdk-version
|
|
run: |
|
|
version=$(grep '^EMSDK_VERSION=' wasm/emsdk.pinned | cut -d= -f2)
|
|
if [ -z "$version" ]; then
|
|
echo "::error::EMSDK_VERSION not found in wasm/emsdk.pinned"
|
|
exit 1
|
|
fi
|
|
echo "version=$version" >> "$GITHUB_OUTPUT"
|
|
|
|
- name: Install Ninja
|
|
uses: seanmiddleditch/gha-setup-ninja@v5
|
|
|
|
- name: Set up Emscripten ${{ steps.emsdk-version.outputs.version }}
|
|
uses: mymindstorm/setup-emsdk@v14
|
|
with:
|
|
version: ${{ steps.emsdk-version.outputs.version }}
|
|
actions-cache-folder: emsdk-cache-${{ steps.emsdk-version.outputs.version }}
|
|
|
|
- name: Set up Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "20"
|
|
|
|
- name: Configure (WASM)
|
|
|
|
run: cmake --preset wasm
|
|
|
|
- name: Build
|
|
run: cmake --build --preset wasm
|
|
|
|
- name: Smoke test
|
|
run: node wasm/hello.test.mjs
|