mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 18:40:27 +01:00
b22558119d
Solution: Use travis to deploy these artifacts automatically. The deployment is triggered by tagging on the zeromq/libzmq repository. Of the many builds travis is checking only the default one with libsodium and drafts disabled is used for deployment. For now the results of `make distcheck` are deployed as well as their md5 and sha1 hash sums. Further changes may upload a generated Changelog as well.
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
|