diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2018-06-24 20:26:51 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2018-06-24 20:34:32 +0200 |
commit | 0eed2406201fc84280d55e744e6ed5c09465e698 (patch) | |
tree | 5d1015280a1f9c475038e46795b235d1b8f2872c | |
parent | f2737099fd0364b3d50bbe2917f1837480e4e012 (diff) | |
download | askama-0eed2406201fc84280d55e744e6ed5c09465e698.tar.gz askama-0eed2406201fc84280d55e744e6ed5c09465e698.tar.bz2 askama-0eed2406201fc84280d55e744e6ed5c09465e698.zip |
Add AppVeyor configuration
-rw-r--r-- | appveyor.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..cdd4e4d --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,20 @@ +environment: + matrix: + - TARGET: x86_64-pc-windows-msvc + OTHER_TARGET: i686-pc-windows-msvc + MAKE_TARGETS: test-unit-x86_64-pc-windows-msvc + +install: + - appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe + - rustup-init.exe -y --default-host x86_64-pc-windows-msvc --default-toolchain stable + - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin + - rustup target add %OTHER_TARGET% + - rustc -V + - cargo -V + +clone_depth: 1 + +build: false + +test_script: + - cargo test |