Files
hagrid/.gitlab-ci.yml
Vincent Breitmoser 2395244b8f Back out "Upgrade Rust toolchain: 1.86 -> 1.89"
This backs out commit 3285f19d09.
2025-09-29 21:17:35 +02:00

14 lines
470 B
YAML

build, test and lint:
image: "rust:1.86-bookworm"
interruptible: true
script:
- apt update -qy
- apt install -qy build-essential pkg-config clang libclang-dev libssl-dev gettext zsh
- rustup component add clippy
- rustup component add rustfmt
- ./make-translated-templates
- cargo build
- cargo clippy --tests --no-deps --workspace
- cargo fmt --all -- --check
- cargo test --workspace