diff options
Diffstat (limited to 'third_party/rust/bytes-0.4.9/ci/before_deploy.sh')
-rw-r--r-- | third_party/rust/bytes-0.4.9/ci/before_deploy.sh | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/third_party/rust/bytes-0.4.9/ci/before_deploy.sh b/third_party/rust/bytes-0.4.9/ci/before_deploy.sh new file mode 100644 index 0000000000..026dc2898d --- /dev/null +++ b/third_party/rust/bytes-0.4.9/ci/before_deploy.sh @@ -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 |