watchexec/ci/before_deploy.sh

16 lines
396 B
Bash
Raw Normal View History

2016-10-14 04:09:34 +02:00
# Build script shamelessly stolen from ripgrep :)
cargo build --target $TARGET --release
build_dir=$(mktemp -d 2>/dev/null || mktemp -d -t tmp)
out_dir=$(pwd)
name="${PROJECT_NAME}-${TRAVIS_TAG}-${TARGET}"
mkdir "$build_dir/$name"
cp target/$TARGET/release/watchexec "$build_dir/$name/"
cp {doc/watchexec.1,LICENSE} "$build_dir/$name/"
2016-10-14 04:09:34 +02:00
pushd $build_dir
tar czf "$out_dir/$name.tar.gz" *
popd