-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
58 lines (52 loc) · 1.13 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
stages:
- fmt
- tests
- quality
- publish
.rust_stable_lin64:
image: registry.duniter.org/docker/rust/rust-x64-stable-ci:latest
tags:
- redshift-docker-runner
before_script:
- export PATH="$HOME/.cargo/bin:$PATH"
- rustup show
- rustc --version && cargo --version
fmt:
extends: .rust_stable_lin64
stage: fmt
before_script:
- cargo fmt -- --version
script:
- cargo fmt -- --check
tests:linux64:stable:
extends: .rust_stable_lin64
stage: tests
tags:
- redshift-docker-runner
script:
- RUSTFLAGS="-D warnings" cargo build
- cargo test --doc
- cargo tarpaulin --ignore-tests -iv --out Xml
- bash <(curl -s https://codecov.io/bash)
clippy:
extends: .rust_stable_lin64
before_script:
- cargo clippy -- -V
stage: quality
script:
- cargo clippy --all --tests -- -D warnings --verbose
audit_dependencies:
extends: .rust_stable_lin64
before_script:
- cargo deny -V
stage: quality
script:
- cargo deny check
publish:
extends: .rust_stable_lin64
stage: publish
only:
- tags
script:
- cargo login $CRATES_IO_TOKEN
- cargo publish