mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 18:40:27 +01:00
21 lines
438 B
Bash
21 lines
438 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -x
|
||
|
set -e
|
||
|
|
||
|
if [[ $BUILD_TYPE == "default" && $CURVE == "libsodium" && -z $DRAFT ]]; then
|
||
|
# Tell travis to deploy all files in dist
|
||
|
mkdir dist
|
||
|
export LIBZMQ_DEPLOYMENT=dist/*
|
||
|
# Move archives to dist
|
||
|
mv *.tar.gz dist
|
||
|
mv *.zip dist
|
||
|
# Generate hash sums
|
||
|
cd dist
|
||
|
md5sum *.zip *.tar.gz > MD5SUMS
|
||
|
sha1sum *.zip *.tar.gz > SHA1SUMS
|
||
|
cd -
|
||
|
else
|
||
|
export LIBZMQ_DEPLOYMENT=""
|
||
|
fi
|