diff options
author | Zac Pullar-Strecker <zacmps@gmail.com> | 2018-10-19 18:08:45 +1300 |
---|---|---|
committer | Zac Pullar-Strecker <zacps@users.noreply.github.com> | 2018-10-29 20:52:14 +1300 |
commit | 58127f468787bec9ae5d463575a8db83ae3652a7 (patch) | |
tree | 72c1fdf2985b921f3ea0470b40f8b74407a5b75d /appveyor.yml | |
parent | df82b5ffbdcc1cb2909f4078b435be3b46281694 (diff) | |
download | alacritty-58127f468787bec9ae5d463575a8db83ae3652a7.tar.gz alacritty-58127f468787bec9ae5d463575a8db83ae3652a7.zip |
Add cargo workspace, add winpty tests to CI
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/appveyor.yml b/appveyor.yml index 8e3eb0f3..b039c19b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -43,10 +43,13 @@ before_test: ) test_script: - - if [%CLIPPY%] == [true] ( - cargo %RUST_TOOLCHAIN% clippy - ) else ( - cargo %RUST_TOOLCHAIN% test + - if [%CLIPPY%]==[true] ( + cargo +%RUST_TOOLCHAIN% clippy + ) + else ( + cargo +%RUST_TOOLCHAIN% test & + copy target\debug\winpty-agent.exe target\debug\deps & + cargo +%RUST_TOOLCHAIN% test -p winpty ) cache: |