Skip to content

Commit

Permalink
Don't run plugin tests on i686-pc-windows-gnu
Browse files Browse the repository at this point in the history
  • Loading branch information
YaLTeR committed May 10, 2018
1 parent 92e75ed commit d21a4fb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,11 @@ test_script:
# Run sample plugin tests.
- cd sample-plugin
- cargo build --verbose
- cargo run --verbose --bin test --features "cfg-if vapoursynth/vapoursynth-functions vapoursynth/vsscript-functions"

# Don't run the plugin tests on i686-pc-windows-gnu as that seems to have issues with function exporting.
# https://github.com/rust-lang/rust/issues/50176
- if not "%target" == "i686-pc-windows-gnu" (
cargo run --verbose --bin test --features "cfg-if vapoursynth/vapoursynth-functions vapoursynth/vsscript-functions"
)

- cd ..

0 comments on commit d21a4fb

Please sign in to comment.