We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d3c12d commit 6477d4bCopy full SHA for 6477d4b
.travis.yml
@@ -13,11 +13,15 @@ env:
13
- RELEASE=
14
- RELEASE=--release
15
16
+install:
17
+ - if [ "$TRAVIS_OS_NAME" = "windows" ]; then rustup target add x86_64-pc-windows-msvc; fi
18
+
19
script:
20
# We cannot run `cargo test` with the mp4parse_fallible feature enabled
21
# (see comment where the feature is defined in mp4parse_capi/Cargo.toml),
22
# but we can at least check for changes behind features that would break the
23
# build.
24
- cargo check --all --verbose $RELEASE --tests --all-features
- - cargo test --all --verbose $RELEASE
25
+ - if [ "$TRAVIS_OS_NAME" = "windows" ]; then export TARGET=--target=x86_64-pc-windows-msvc; fi
26
+ - cargo test --all --verbose $RELEASE $TARGET
27
- cargo doc --package mp4parse_capi
0 commit comments