mirror of
https://github.com/spartanz51/tutabridge.git
synced 2026-06-24 10:54:32 +02:00
GitHub Actions on push/PR (macOS runner): checks out the vendored SDK submodule (full history so its pinned fork-branch commit is reachable), builds the frontend (tauri-build needs ui/dist), then runs `cargo fmt --check`, clippy (advisory for now), and `cargo test --workspace`. Caches cargo to keep runs reasonable. Also point .gitmodules at `tutabridge-integration` (the branch the submodule commit actually lives on).
73 lines
2.1 KiB
YAML
73 lines
2.1 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
|
|
# Cancel superseded runs on the same ref.
|
|
concurrency:
|
|
group: ci-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
# macOS runner: TutaBridge is a Mac desktop app and depends on
|
|
# platform crates (keyring apple-native, the Security framework, …).
|
|
runs-on: macos-latest
|
|
steps:
|
|
- name: Checkout (with vendored SDK submodule)
|
|
uses: actions/checkout@v4
|
|
with:
|
|
# The Tuta Rust SDK is vendored as the `tuta-repo` submodule and
|
|
# the build does not work without it.
|
|
submodules: recursive
|
|
# Full history so the submodule's pinned commit (which lives on a
|
|
# fork branch, not necessarily a branch tip) is always reachable —
|
|
# a shallow fetch can miss it.
|
|
fetch-depth: 0
|
|
|
|
- name: Install Rust toolchain
|
|
uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
components: rustfmt, clippy
|
|
|
|
# Caches ~/.cargo and ./target — the SDK + aws-lc-sys + pqcrypto are
|
|
# heavy, so without this a run takes ~10 min.
|
|
- name: Cache cargo build
|
|
uses: Swatinem/rust-cache@v2
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
cache: npm
|
|
cache-dependency-path: ui/package-lock.json
|
|
|
|
# The GUI crate's build script (tauri-build) needs the frontend bundle
|
|
# at ui/dist, so the frontend has to be built before any cargo step
|
|
# that compiles `tutabridge-gui`.
|
|
- name: Build frontend
|
|
working-directory: ui
|
|
run: |
|
|
npm ci
|
|
npm run build
|
|
|
|
- name: Typecheck frontend
|
|
working-directory: ui
|
|
run: npx tsc --noEmit
|
|
|
|
- name: Rustfmt
|
|
run: cargo fmt --all --check
|
|
|
|
# Advisory for now — the codebase still has a handful of clippy lints.
|
|
# Tighten to `-- -D warnings` once they're cleared.
|
|
- name: Clippy
|
|
run: cargo clippy --workspace --all-targets
|
|
|
|
- name: Test
|
|
run: cargo test --workspace
|