bbe53bac80
Gate runs fmt, clippy with warnings denied, cargo-machete, and nextest. nextest comes from a prebuilt binary rather than `cargo install` to keep the run short. Cache covers ~/.cargo and target/, keyed on Cargo.lock plus the toolchain file. Nothing builds --release. e2e is a separate workflow, main plus PRs touching the crates whose seams it covers. cargo-deny is weekly, off the push path. Closes #2 Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
75 lines
1.9 KiB
YAML
75 lines
1.9 KiB
YAML
name: e2e
|
|
|
|
# Kept off the per-push gate deliberately — DESIGN.md §12. Runs on main, and on
|
|
# pull requests that touch the crates whose seams these tests cover.
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
paths:
|
|
- 'crates/arr-e2e/**'
|
|
- 'crates/arr-dl/**'
|
|
- 'crates/arr-indexer/**'
|
|
- 'crates/arr-probe/**'
|
|
- 'crates/arr-daemon/**'
|
|
- '.gitea/workflows/e2e.yml'
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
CARGO_PROFILE_DEV_DEBUG: "0"
|
|
|
|
jobs:
|
|
e2e:
|
|
runs-on: ubuntu-latest
|
|
|
|
services:
|
|
transmission:
|
|
image: linuxserver/transmission:latest
|
|
env:
|
|
PUID: "1000"
|
|
PGID: "1000"
|
|
ports:
|
|
- 9091:9091
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Build deps and ffmpeg
|
|
run: |
|
|
apt-get update
|
|
apt-get install -y --no-install-recommends \
|
|
git curl ca-certificates build-essential pkg-config ffmpeg
|
|
|
|
- name: Cache cargo
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: |
|
|
~/.cargo/bin
|
|
~/.cargo/registry
|
|
~/.cargo/git
|
|
target
|
|
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock', 'rust-toolchain.toml') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-cargo-
|
|
|
|
- name: Toolchain
|
|
run: |
|
|
if ! command -v cargo >/dev/null; then
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs \
|
|
| sh -s -- -y --profile minimal --no-modify-path
|
|
fi
|
|
echo "$HOME/.cargo/bin" >> "$GITHUB_PATH"
|
|
|
|
- name: nextest
|
|
run: |
|
|
export PATH="$HOME/.cargo/bin:$PATH"
|
|
command -v cargo-nextest >/dev/null || \
|
|
curl -LsSf https://get.nexte.st/latest/linux \
|
|
| tar zxf - -C "$HOME/.cargo/bin"
|
|
|
|
- name: e2e
|
|
env:
|
|
TRANSMISSION_RPC_URL: http://transmission:9091/transmission/rpc
|
|
run: cargo nextest run -p arr-e2e
|