Skip to content

Commit 0a7aeda

Browse files
committed
ci: install zlib-dev
1 parent 4151626 commit 0a7aeda

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.circleci/config.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,15 @@ commands:
3131
- /usr/local/cargo/registry
3232
key: cargo-cache-{{ arch }}-{{ .Branch }}-{{ checksum "Cargo.toml" }}
3333

34+
install_zlib_dev:
35+
description: Install zlib-dev
36+
steps:
37+
- run:
38+
name: Install zlib-dev
39+
command: |
40+
sudo apt-get update
41+
sudo apt-get install -y zlib1g-dev
42+
3443
jobs:
3544
fmt:
3645
docker:
@@ -188,6 +197,7 @@ jobs:
188197
- checkout
189198
- rust_components
190199
- cache_restore
200+
- install_zlib_dev
191201
- run:
192202
name: Cargo test
193203
command: cargo test --all-features --workspace
@@ -253,6 +263,7 @@ jobs:
253263
- checkout
254264
- rust_components
255265
- cache_restore
266+
- install_zlib_dev
256267
- run:
257268
name: Cargo test
258269
command: cargo test --all-features --workspace

0 commit comments

Comments
 (0)