Files
topgrade/ci/before_deploy.sh
Oleksii Filonenko 7cfdc69b63 Shellcheck ci scripts, add a small .editorconfig (#186)
* Shellcheck ci/script.sh

* Shellcheck ci/install.sh, simplify script a bit

* Add .editorconfig for ci/*.sh

* Shellcheck ci/before_deploy.sh
2019-08-13 21:55:31 +03:00

33 lines
714 B
Bash

# This script takes care of building your crate and packaging it for release
set -ex
main() {
src=$(pwd)
case "$TRAVIS_OS_NAME" in
linux)
stage=$(mktemp -d)
;;
osx)
stage=$(mktemp -d -t tmp)
;;
esac
test -f Cargo.lock || cargo generate-lockfile
# TODO Update this to build the artifacts that matter to you
cross rustc --bin topgrade --target "$TARGET" --release --all-features -- -C lto
# TODO Update this to package the right artifacts
cp target/"$TARGET"/release/topgrade "$stage"/
cd "$stage"
tar czf "$src"/"$CRATE_NAME"-"$TRAVIS_TAG"-"$TARGET".tar.gz ./*
cd "$src"
rm -rf "$stage"
}
main