From c8c925e8d7937de4e6a5328a9c062240ad90b8f0 Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Tue, 25 Feb 2020 13:39:53 -0500 Subject: Fix windows builds for travis --- .travis.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index fce0ebfe..35303c37 100644 --- a/.travis.yml +++ b/.travis.yml @@ -47,16 +47,17 @@ notifications: before_deploy: - | if [[ $TRAVIS_OS_NAME == "windows" ]]; then + choco install zip; rustup target add x86_64-pc-windows-msvc; cargo build --release --target x86_64-pc-windows-msvc; - strip ./target/x86_64-pc-windows-msvc/release/btm; - mv ./target/x86_64-pc-windows-msvc/release/btm ./target/x86_64-pc-windows-msvc/release/btm.exe; - zip -r bottom_x86_64-pc-windows-msvc.zip ./target/x86_64-pc-windows-msvc/release/btm.exe; + strip "./target/x86_64-pc-windows-msvc/release/btm"; + mv "./target/x86_64-pc-windows-msvc/release/btm" "./target/x86_64-pc-windows-msvc/release/btm.exe"; + zip bottom_x86_64-pc-windows-msvc.zip "./target/x86_64-pc-windows-msvc/release/btm.exe"; rustup target add i686-pc-windows-msvc; cargo build --release --target i686-pc-windows-msvc; - strip ./target/i686-pc-windows-msvc/release/btm; - mv ./target/i686-pc-windows-msvc/release/btm ./target/i686-pc-windows-msvc/release/btm.exe; - zip -r bottom_i686-pc-windows-msvc.zip ./target/i686-pc-windows-msvc/release/btm.exe; + strip "./target/i686-pc-windows-msvc/release/btm"; + mv "./target/i686-pc-windows-msvc/release/btm" "./target/i686-pc-windows-msvc/release/btm.exe"; + zip bottom_i686-pc-windows-msvc.zip "./target/i686-pc-windows-msvc/release/btm.exe"; else cargo build --release; cp ./target/release/btm btm; -- cgit v1.2.3