summaryrefslogtreecommitdiffhomepage
path: root/ci/check-rust.sh
blob: cb48fbed3f1b51ae40522dcb2633cfe22d87d947 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env bash

set -eux

export RUSTFLAGS="--deny warnings"

# Build Rust crates
source env.sh
time cargo build --locked --verbose

# Test Rust crates
time cargo test --locked --verbose