forked from KokaKiwi/rust-hex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
47 lines (45 loc) · 946 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
stages:
- compile
- test
compile:
stage: compile
image: liuchong/rustup:$RUST_VERSION
script:
- cargo build
cache:
key: "$CI_COMMIT_REF_SLUG:$RUST_VERSION"
paths:
- target/
parallel:
matrix:
- RUST_VERSION:
- stable
- stable-musl
- beta
- beta-musl
- nightly
- nightly-musl
test:
stage: test
image: liuchong/rustup:$RUST_VERSION
script:
- cargo test
- cargo test --no-default-features
- cargo test --no-default-features --features alloc
- cargo test --no-default-features --features std
- cargo test --no-default-features --features serde
cache:
key: "$CI_COMMIT_REF_SLUG:$RUST_VERSION"
paths:
- target/
needs:
- compile
parallel:
matrix:
- RUST_VERSION:
- stable
- stable-musl
- beta
- beta-musl
- nightly
- nightly-musl