Skip to content

Commit d21a4fb

Browse files
committed
Don't run plugin tests on i686-pc-windows-gnu
rust-lang/rust#50176
1 parent 92e75ed commit d21a4fb

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

appveyor.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -83,5 +83,11 @@ test_script:
8383
# Run sample plugin tests.
8484
- cd sample-plugin
8585
- cargo build --verbose
86-
- cargo run --verbose --bin test --features "cfg-if vapoursynth/vapoursynth-functions vapoursynth/vsscript-functions"
86+
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+
8793
- cd ..

0 commit comments

Comments
 (0)