From 61da628813d46d6b98093d3ad83ca4970fe07c2a Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Tue, 25 Feb 2020 10:52:13 -0500 Subject: [PATCH] Remove 32-bit automated build for linux Seems to fail on one dependency. Will investigate later for 0.3. --- .travis.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 30dcd0314..fce0ebfe5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -63,10 +63,6 @@ before_deploy: strip btm; if [[ $TRAVIS_OS_NAME == "linux" ]]; then tar -czvf bottom_x86_64-unknown-linux-gnu.tar.gz btm; - rustup target add i686-unknown-linux-gnu; - cargo build --release --target i686-unknown-linux-gnu; - strip ./target/i686-unknown-linux-gnu/release/btm; - tar -czvf bottom_i686-unknown-linux-gnu.tar.gz ./target/i686-unknown-linux-gnu/release/btm; tar -czvf bottom_source_code.tar.gz ./src ./Cargo.toml LICENSE tests README.md; cargo install cargo-deb; cargo deb;