sfizz/.travis/after_success.sh

10 lines
146 B
Bash
Raw Normal View History

#!/bin/bash
set -ex
2019-12-23 05:13:29 -08:00
cd build
make install
tar -zcvf "${INSTALL_DIR}.tar.gz" ${INSTALL_DIR}
mv "${INSTALL_DIR}.tar.gz" ${TRAVIS_BUILD_DIR}
cd ..