1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-02-04 06:08:39 +02:00
ripgrep/ci/before_deploy.sh

37 lines
828 B
Bash
Raw Normal View History

2016-09-05 20:08:46 -04:00
# `before_deploy` phase: here we package the build artifacts
set -ex
. $(dirname $0)/utils.sh
# Generate artifacts for release
mk_artifacts() {
RUSTFLAGS="-C target-feature=+ssse3" \
cargo build --target $TARGET --release --features simd-accel
2016-09-05 20:08:46 -04:00
}
mk_tarball() {
# create a "staging" directory
local td=$(mktempd)
local out_dir=$(pwd)
local name="${PROJECT_NAME}-${TRAVIS_TAG}-${TARGET}"
mkdir "$td/$name"
2016-12-07 10:32:24 -05:00
mkdir "$td/$name/complete"
2016-09-05 20:08:46 -04:00
cp target/$TARGET/release/rg "$td/$name/"
2016-09-22 19:20:06 -04:00
cp {doc/rg.1,README.md,UNLICENSE,COPYING,LICENSE-MIT} "$td/$name/"
2016-12-07 11:13:44 -05:00
cp target/$TARGET/release/build/ripgrep-*/out/{_rg,rg.bash-completion,rg.fish,_rg.ps1} "$td/$name/complete/"
2016-09-05 20:08:46 -04:00
pushd $td
tar czf "$out_dir/$name.tar.gz" *
2016-09-05 20:08:46 -04:00
popd
rm -r $td
}
main() {
mk_artifacts
mk_tarball
}
main