Use macOS 10.15.4 (Catalina) for Travis build

This commit is contained in:
sharkdp 2020-05-19 16:02:10 +02:00 committed by David Peter
parent c761d51dfb
commit c8746f6216
2 changed files with 2 additions and 1 deletions

View File

@ -15,6 +15,7 @@ matrix:
rust: stable
env: TARGET=i686-unknown-linux-musl
- os: osx
osx_image: xcode11.4 # Catalina
rust: stable
env: TARGET=x86_64-apple-darwin
- os: linux

2
ci/script.bash vendored
View File

@ -7,5 +7,5 @@ cargo build --target "$TARGET" --verbose
# We cannot run arm executables on linux
if [[ $TARGET != arm-unknown-linux-* ]]; then
cargo test --target "$TARGET" --verbose
cargo test --target "$TARGET" --verbose --release
fi