Remove 32-bit automated build for linux

Seems to fail on one dependency.  Will investigate later for 0.3.
This commit is contained in:
Clement Tsang 2020-02-25 10:52:13 -05:00 committed by GitHub
parent 059290c983
commit 61da628813
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;