-
Notifications
You must be signed in to change notification settings - Fork 5
230 lines (184 loc) · 5.8 KB
/
tests.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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
name: aquadoggo
on: push
env:
CARGO_TERM_COLOR: always
RUST_TOOLCHAIN: 1.79.0
cargo_manifest: aquadoggo/Cargo.toml
jobs:
rust-build-release:
runs-on: ubuntu-latest
steps:
- name: Install Protocol Buffers compiler
run: sudo apt-get install protobuf-compiler
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Rust toolchain
uses: moonrepo/setup-rust@v1
with:
channel: ${{ env.RUST_TOOLCHAIN }}
cache-target: release
- name: Build binary
run: |
cargo build \
--verbose \
--release \
--manifest-path ${{ env.cargo_manifest }}
rust-test-sqlite:
runs-on: ubuntu-latest
steps:
- name: Install Protocol Buffers compiler
run: sudo apt-get install protobuf-compiler
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Rust toolchain
uses: moonrepo/setup-rust@v1
with:
channel: ${{ env.RUST_TOOLCHAIN }}
# Related issue: https://github.com/p2panda/aquadoggo/issues/414
- name: Temporary workaround for rustc bug
run: cargo clean
- name: Run tests
env:
# Ensure debug output is also tested
RUST_LOG: debug
run: |
cargo test \
--manifest-path ${{ env.cargo_manifest }}
rust-test-postgres:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:latest
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: aquadoggo-development
ports:
# Maps TCP port 5432 on service container to the host
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Install Protocol Buffers compiler
run: sudo apt-get install protobuf-compiler
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Rust toolchain
uses: moonrepo/setup-rust@v1
with:
channel: ${{ env.RUST_TOOLCHAIN }}
# Related issue: https://github.com/p2panda/aquadoggo/issues/414
- name: Temporary workaround for rustc bug
run: cargo clean
- name: Run tests
env:
DATABASE_URL: postgresql://postgres:postgres@localhost:5432/aquadoggo-development
# Make sure the tests run consecutively to avoid accessing the same
# database by multiple test threads
run: |
cargo test \
--manifest-path ${{ env.cargo_manifest }} \
-- --test-threads 1
rust-prop-test:
runs-on: ubuntu-latest
steps:
- name: Install Protocol Buffers compiler
run: sudo apt-get install protobuf-compiler
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Rust toolchain
uses: moonrepo/setup-rust@v1
with:
channel: ${{ env.RUST_TOOLCHAIN }}
- name: Run tests
run: |
cargo test proptests::tests \
--manifest-path ${{ env.cargo_manifest }} \
--features=proptests
rust-check:
runs-on: ubuntu-latest
steps:
- name: Install Protocol Buffers compiler
run: sudo apt-get install protobuf-compiler
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Rust toolchain
uses: moonrepo/setup-rust@v1
with:
channel: ${{ env.RUST_TOOLCHAIN }}
- name: Check project and dependencies
run: |
cargo check \
--manifest-path ${{ env.cargo_manifest }}
rust-fmt:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Rust toolchain
uses: moonrepo/setup-rust@v1
with:
channel: ${{ env.RUST_TOOLCHAIN }}
components: rustfmt
- name: Check formatting
run: |
cargo fmt \
--manifest-path ${{ env.cargo_manifest }} \
-- --check
rust-clippy:
runs-on: ubuntu-latest
steps:
- name: Install Protocol Buffers compiler
run: sudo apt-get install protobuf-compiler
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Rust toolchain
uses: moonrepo/setup-rust@v1
with:
channel: ${{ env.RUST_TOOLCHAIN }}
components: clippy
- name: Check code with clippy
run: |
cargo clippy \
--manifest-path ${{ env.cargo_manifest }} \
-- -D warnings --no-deps
rust-coverage:
runs-on: ubuntu-latest
steps:
- name: Install Protocol Buffers compiler
run: sudo apt-get install protobuf-compiler
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Rust toolchain
uses: moonrepo/setup-rust@v1
with:
channel: ${{ env.RUST_TOOLCHAIN }}
bins: grcov
components: llvm-tools-preview
- name: Run compiler for source based coverage
env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: '-Cinstrument-coverage'
LLVM_PROFILE_FILE: 'cargo-test-%p-%m.profraw'
run: |
cargo test \
--manifest-path ${{ env.cargo_manifest }}
- name: Run grcov to generate .lcov file
run: |
grcov . \
--binary-path ./target/debug/deps/ \
-s . \
-t lcov \
--branch \
--ignore-not-existing \
--ignore '../*' \
--ignore "/*" \
-o coverage.lcov
- name: Upload to codecov.io
uses: codecov/codecov-action@v3
with:
files: coverage.lcov
token: ${{ secrets.CODECOV_TOKEN }}