diff --git a/.travis.yml b/.travis.yml index eea814f..c48317b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,5 +16,5 @@ before_script: - if [ "$TRAVIS_OS_NAME" = linux ]; then rustup target add x86_64-apple-darwin; fi script: - if [ "$TRAVIS_OS_NAME" = linux ]; then curl -sL https://github.com/phracker/MacOSX-SDKs/releases/download/10.13/MacOSX10.13.sdk.tar.xz | tar -Jxf -; export COREAUDIO_SDK_PATH="$PWD/MacOSX10.13.sdk"; fi -- RUSTFMT=rustfmt cargo build --verbose --target=x86_64-apple-darwin -- if [ "$TRAVIS_OS_NAME" = osx ]; then RUSTFMT=rustfmt cargo test --verbose; fi +- cargo build --verbose --target=x86_64-apple-darwin +- if [ "$TRAVIS_OS_NAME" = osx ]; then cargo test --verbose; fi diff --git a/Cargo.toml b/Cargo.toml index ddda76f..053bfd0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "coreaudio-sys" -version = "0.2.3" +version = "0.2.4" authors = ["Mitchell Nordine "] description = "Bindings for Apple's CoreAudio frameworks generated via rust-bindgen" license = "MIT"