-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
136 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
#!/bin/bash | ||
|
||
CUR_DIR=$( cd $( dirname $0 ) && pwd ) | ||
VERSION=$(grep -E '^version' ${CUR_DIR}/../Cargo.toml | awk '{print $3}' | sed 's/"//g') | ||
|
||
## Disable macos ACL file | ||
if [[ "$(uname -s)" == "Darwin" ]]; then | ||
export COPYFILE_DISABLE=1 | ||
fi | ||
|
||
targets=() | ||
features=() | ||
use_upx=false | ||
|
||
while getopts "t:f:u" opt; do | ||
case $opt in | ||
t) | ||
targets+=($OPTARG) | ||
;; | ||
f) | ||
features+=($OPTARG) | ||
;; | ||
u) | ||
use_upx=true | ||
;; | ||
?) | ||
echo "Usage: $(basename $0) [-t <target-triple>] [-f features] [-u]" | ||
;; | ||
esac | ||
done | ||
|
||
features+=${EXTRA_FEATURES} | ||
|
||
if [[ "${#targets[@]}" == "0" ]]; then | ||
echo "Specifying compile target with -t <target-triple>" | ||
exit 1 | ||
fi | ||
|
||
if [[ "${use_upx}" = true ]]; then | ||
if [[ -z "$upx" ]] && command -v upx &> /dev/null; then | ||
upx="upx -9" | ||
fi | ||
|
||
if [[ "x$upx" == "x" ]]; then | ||
echo "Couldn't find upx in PATH, consider specifying it with variable \$upx" | ||
exit 1 | ||
fi | ||
fi | ||
|
||
|
||
function build() { | ||
cd "$CUR_DIR/.." | ||
|
||
TARGET=$1 | ||
|
||
RELEASE_DIR="target/${TARGET}/release" | ||
TARGET_FEATURES="${features[@]}" | ||
|
||
if [[ "${TARGET_FEATURES}" != "" ]]; then | ||
echo "* Building ${TARGET} package ${VERSION} with features \"${TARGET_FEATURES}\" ..." | ||
|
||
cargo zigbuild --target "${TARGET}" \ | ||
--features "${TARGET_FEATURES}" \ | ||
--release | ||
else | ||
echo "* Building ${TARGET} package ${VERSION} ..." | ||
|
||
cargo zigbuild --target "${TARGET}" \ | ||
--release | ||
fi | ||
|
||
if [[ $? != "0" ]]; then | ||
exit 1 | ||
fi | ||
|
||
PKG_DIR="${CUR_DIR}/release" | ||
mkdir -p "${PKG_DIR}" | ||
|
||
if [[ "$TARGET" == *"-linux-"* ]]; then | ||
PKG_NAME="shadowsocks-v${VERSION}.${TARGET}.tar.xz" | ||
PKG_PATH="${PKG_DIR}/${PKG_NAME}" | ||
|
||
cd ${RELEASE_DIR} | ||
|
||
if [[ "${use_upx}" = true ]]; then | ||
# Enable upx for MIPS. | ||
$upx sslocal ssserver ssurl ssmanager ssservice #>/dev/null | ||
fi | ||
|
||
echo "* Packaging XZ in ${PKG_PATH} ..." | ||
tar -cJf ${PKG_PATH} \ | ||
"sslocal" \ | ||
"ssserver" \ | ||
"ssurl" \ | ||
"ssmanager" \ | ||
"ssservice" | ||
|
||
if [[ $? != "0" ]]; then | ||
exit 1 | ||
fi | ||
|
||
cd "${PKG_DIR}" | ||
shasum -a 256 "${PKG_NAME}" > "${PKG_NAME}.sha256" | ||
elif [[ "$TARGET" == *"-windows-"* ]]; then | ||
PKG_NAME="shadowsocks-v${VERSION}.${TARGET}.zip" | ||
PKG_PATH="${PKG_DIR}/${PKG_NAME}" | ||
|
||
echo "* Packaging ZIP in ${PKG_PATH} ..." | ||
cd ${RELEASE_DIR} | ||
zip ${PKG_PATH} \ | ||
"sslocal.exe" \ | ||
"ssserver.exe" \ | ||
"ssurl.exe" \ | ||
"ssmanager.exe" \ | ||
"ssservice.exe" | ||
|
||
if [[ $? != "0" ]]; then | ||
exit 1 | ||
fi | ||
|
||
cd "${PKG_DIR}" | ||
shasum -a 256 "${PKG_NAME}" > "${PKG_NAME}.sha256" | ||
fi | ||
|
||
echo "* Done build package ${PKG_NAME}" | ||
} | ||
|
||
for target in "${targets[@]}"; do | ||
build "$target"; | ||
done |