-
Notifications
You must be signed in to change notification settings - Fork 0
162 lines (139 loc) · 4.11 KB
/
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
name: CI
on:
push:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
check_test_latest:
name: check (test) on latest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache Rust
uses: actions/cache@v3
env:
cache-name: cache-rust
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-build-${{ hashFiles('**/Cargo.toml') }}
- name: Setup Memphis Latest
run: |
curl -sSL https://raw.githubusercontent.com/memphisdev/memphis-docker/master/docker-compose-latest.yml > docker-compose.yml
docker-compose up -d
- name: Install Rust
run: |
rustup install nightly
rustup default nightly
- name: Run Tests
env:
RUST_TEST_TIME_UNIT: 60000,120000
RUST_TEST_TIME_INTEGRATION: 60000,120000
RUST_TEST_TIME_DOCTEST: 60000,120000
RUST_LOG: debug
run: |
cargo test --workspace --all-targets --all-features -- --ensure-time --report-time -Z unstable-options
check_test_stable:
name: check (test) on stable
runs-on: ubuntu-latest
needs:
- check_test_latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache Rust
uses: actions/cache@v3
env:
cache-name: cache-rust
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-build-${{ hashFiles('**/Cargo.toml') }}
- name: Setup Memphis Stable
run: |
curl -sSL https://raw.githubusercontent.com/memphisdev/memphis-docker/master/docker-compose.yml > docker-compose.yml
docker-compose up -d
- name: Install Rust
run: |
rustup install nightly
rustup default nightly
- name: Run Tests
env:
RUST_TEST_TIME_UNIT: 60000,120000
RUST_TEST_TIME_INTEGRATION: 60000,120000
RUST_TEST_TIME_DOCTEST: 60000,120000
RUST_LOG: debug
run: |
cargo test --workspace --all-targets --all-features -- --ensure-time --report-time -Z unstable-options
check_format:
name: check (format)
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Rust
run: |
rustup install nightly
rustup default nightly
rustup component add rustfmt
- name: Run the check
run: cargo fmt -- --check
check_lint:
name: check (lint)
runs-on: ubuntu-latest
steps:
- name: Cache rust
uses: actions/cache@v3
env:
cache-name: cache-rust
with:
path: target
key: ${{ runner.os }}-${{ env.cache-name }}
restore-keys: |
${{ runner.os }}-
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Rust
run: |
rustup install nightly
rustup default nightly
rustup component add clippy
- name: Check lint
run: cargo clippy --all-targets --all-features -- -D warnings
check_docs:
name: check (docs)
runs-on: ubuntu-latest
steps:
- name: Cache rust
uses: actions/cache@v3
env:
cache-name: cache-rust
with:
path: target
key: ${{ runner.os }}-${{ env.cache-name }}
restore-keys: |
${{ runner.os }}-
- name: Check out repository
uses: actions/checkout@v3
- name: Set up rust
run: |
rustup install nightly
rustup default nightly
rustup component add clippy
- name: Check lint
env:
RUSTDOCFLAGS: -D warnings
run: cargo doc --workspace --all-features