hagrid-keyserver--hagrid/.gitlab-ci.yml

14 lines
461 B
YAML
Raw Normal View History

build, test and lint:
2022-02-18 13:46:01 +00:00
image: "rust:1-bullseye"
interruptible: true
2022-02-18 13:46:01 +00:00
script:
- apt update -qy
- apt install -qy build-essential pkg-config clang libclang-dev nettle-dev gettext zsh
2022-02-18 13:46:01 +00:00
- rustup component add clippy
- rustup component add rustfmt
2019-11-18 10:26:41 +00:00
- ./make-translated-templates
- cargo build
2022-03-03 14:39:22 +00:00
- cargo clippy --tests --no-deps --workspace
- cargo fmt --all -- --check
- cargo test --all