We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92e75ed commit d21a4fbCopy full SHA for d21a4fb
appveyor.yml
@@ -83,5 +83,11 @@ test_script:
83
# Run sample plugin tests.
84
- cd sample-plugin
85
- cargo build --verbose
86
- - cargo run --verbose --bin test --features "cfg-if vapoursynth/vapoursynth-functions vapoursynth/vsscript-functions"
+
87
+ # Don't run the plugin tests on i686-pc-windows-gnu as that seems to have issues with function exporting.
88
+ # https://github.com/rust-lang/rust/issues/50176
89
+ - if not "%target" == "i686-pc-windows-gnu" (
90
+ cargo run --verbose --bin test --features "cfg-if vapoursynth/vapoursynth-functions vapoursynth/vsscript-functions"
91
+ )
92
93
- cd ..
0 commit comments