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

26 lines
674 B
YAML
Raw Normal View History

2018-11-12 13:21:04 +00:00
stages:
- build
2022-02-18 13:46:01 +00:00
build:clippy:
stage: build
tags:
- docker
image: "rust:1-bullseye"
script:
- apt update -qy
- apt install -qy libclang-dev build-essential pkg-config clang nettle-dev gettext zsh
- rustup component add clippy
- RUST_BACKTRACE=full cargo clippy
2018-11-12 13:21:04 +00:00
build:binary:
stage: build
tags:
- docker
image: "rustlang/rust:nightly"
script:
- apt update -qy
2020-05-10 22:10:46 +00:00
- apt install -qy libclang-dev build-essential pkg-config clang nettle-dev gettext zsh
2019-11-18 10:26:41 +00:00
- ./make-translated-templates
- RUST_BACKTRACE=full cargo build
2019-03-12 13:28:11 +00:00
- RUST_BACKTRACE=full cargo test --all