Strip btm in travis. It's not dirty I swear.

This commit is contained in:
ClementTsang 2020-02-17 23:16:58 -05:00
parent 40900d91ba
commit 0724a40efb
1 changed files with 3 additions and 0 deletions

View File

@ -48,12 +48,15 @@ after_script:
- |
if [[ $TRAVIS_OS_NAME == "linux" ]]; then
cp ./target/x86_64-unknown-linux-gnu/debug/btm btm;
strip btm;
tar -czvf bottom_x86_64-unknown-linux-gnu.tar.gz btm;
elif [[ $TRAVIS_OS_NAME == "windows" ]]; then
cp ./target/x86_64-pc-windows-msvc/debug/btm btm;
strip btm;
tar -czvf bottom_x86_64-pc-windows-msvc.tar.gz btm;
elif [[ $TRAVIS_OS_NAME == "osx" ]]; then
cp ./target/x86_64-apple-darwin/debug/btm btm;
strip btm;
tar -czvf bottom_x86_64-apple-darwin.tar.gz btm;
fi