jsonwebkey-rs-repaired/ci/before_deploy.sh
2020-07-25 12:21:37 +09:00

34 lines
675 B
Bash
Executable file

# This script takes care of building your crate and packaging it for release
set -ex
main() {
local src=$(pwd) \
stage=
case $TRAVIS_OS_NAME in
linux)
stage=$(mktemp -d)
;;
osx)
stage=$(mktemp -d -t tmp)
;;
esac
test -f Cargo.lock || cargo generate-lockfile
cross build --target $TARGET --release
# TODO Update this to package the right artifacts
cp target/$TARGET/release/jsonwebkey-cli $stage/
cp README.md $stage/
cp LICENSE $stage/LICENSE
cd $stage
tar czf $src/$CRATE_NAME-$TRAVIS_TAG-$TARGET.tar.gz *
cd $src
rm -rf $stage
}
main