1
0
Fork 0

Add travis ci

This commit is contained in:
Jordan Johnson-Doyle 2019-02-11 10:59:36 +00:00
parent 7b9062aa21
commit 9e040e0a04
No known key found for this signature in database
GPG key ID: A95F87B578CE79B6
5 changed files with 216 additions and 0 deletions

33
ci/before_deploy.sh Executable file
View file

@ -0,0 +1,33 @@
# 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
# TODO Update this to build the artifacts that matter to you
cross rustc --bin hello --target $TARGET --release -- -C lto
# TODO Update this to package the right artifacts
cp target/$TARGET/release/hello $stage/
cd $stage
tar czf $src/$CRATE_NAME-$TRAVIS_TAG-$TARGET.tar.gz *
cd $src
rm -rf $stage
}
main