about summary refs log tree commit diff
path: root/src/tools/rustfmt/ci/build_and_test.sh
blob: dd9a0c0fd9b4236af561869f3f04d46791f5ada9 (plain)
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
#!/bin/bash

set -euo pipefail

export RUSTFLAGS="-D warnings"
export RUSTFMT_CI=1

# Print version information
rustc -Vv
cargo -V

# Build and test main crate
if [ "$CFG_RELEASE_CHANNEL" == "nightly" ]; then
    cargo build --locked --all-features
else
    cargo build --locked
fi
cargo test

# Build and test config_proc_macro
cd config_proc_macro
cargo build --locked
cargo test

# Build and test check_diff
cd ..
cd check_diff
cargo build --locked
cargo test