blob: c17bbbd238a34b7e8edac08e10d774de78d5748b (
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
30
31
32
33
34
35
|
#!/bin/bash
# Check if any command failed
error=false
# Run clippy checks
if [ "$CLIPPY" == "true" ]; then
cargo clippy --all-targets
exit
fi
# Run test in release mode if a tag is present, to produce an optimized binary
if [ -n "$TRAVIS_TAG" ]; then
cargo test --release || error=true
else
cargo test || error=true
fi
# Test the font subcrate
cargo test -p font || error=true
# Test the winpty subcrate
if [ "$TRAVIS_OS_NAME" == "windows" ]; then
if [ -n "$TRAVIS_TAG" ]; then
mkdir -p "./target/debug/deps"
cp "./target/release/winpty-agent.exe" "./target/debug/deps"
else
cp "./target/debug/winpty-agent.exe" "./target/debug/deps"
fi
cargo test -p winpty || error=true
fi
if [ $error == "true" ]; then
exit 1
fi
|