-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.gitlab-ci.yml
58 lines (48 loc) · 972 Bytes
/
.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
image: rust
.only-default: &only-default
only:
- master
- merge_requests
- tags
cache:
key: ${CI_COMMIT_REF_SLUG}
untracked: true
stages:
- build
- test
before_script:
# This lets us cache cargo's downloads
- "export CARGO_HOME=.cargo"
cargo build:
<<: *only-default
stage: build
script:
- cargo build
cargo audit:
<<: *only-default
stage: test
script:
- cargo install cargo-audit
- cargo audit
cargo clippy:
<<: *only-default
stage: test
script:
- rustup component add clippy
- cargo clippy --all-targets --all-features -- -D warnings
cargo doc:
<<: *only-default
stage: test
script:
- cargo doc
cargo fmt:
<<: *only-default
stage: test
script:
- rustup component add rustfmt
- cargo fmt -- --check -v
cargo test:
<<: *only-default
stage: test
script:
- cargo test