1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 02:35:23 +00:00
v2fly/tools/release/make-release.sh

42 lines
928 B
Bash
Raw Normal View History

2016-07-27 15:50:24 +00:00
#!/bin/bash
VER=$1
2017-02-23 15:44:59 +00:00
PRE=$2
PROJECT=$3
2016-07-27 15:50:24 +00:00
2017-02-23 15:44:59 +00:00
if [ -z "$PRE" ]; then
PRE="true"
2016-07-27 15:50:24 +00:00
fi
2017-02-23 15:45:55 +00:00
if [ -z "$PROJECT" ]; then
echo "Project not specified. Exiting..."
exit 0
fi
2016-07-27 15:50:24 +00:00
echo Creating a new release: $VER: $MSG
IFS="." read -a PARTS <<< "$VER"
MAJOR=${PARTS[0]}
MINOR=${PARTS[1]}
MINOR=$((MINOR+1))
VERN=${MAJOR}.${MINOR}
2016-08-20 18:55:45 +00:00
pushd $GOPATH/src/v2ray.com/core
2016-07-27 15:50:24 +00:00
echo "Adding a new tag: " "v$VER"
2017-02-23 15:44:59 +00:00
git tag -s -a "v$VER" -m "Version ${VER}"
2016-07-27 15:50:24 +00:00
sed -i '' "s/\(version *= *\"\).*\(\"\)/\1$VERN\2/g" core.go
2016-08-01 15:50:55 +00:00
echo "Commiting core.go (may not necessary)"
2016-08-07 15:13:18 +00:00
git commit core.go -S -m "Update version"
2016-07-27 15:50:24 +00:00
echo "Pushing changes"
git push --follow-tags
2017-02-23 15:44:59 +00:00
popd
echo "Launching build machine."
DIR="$(dirname "$0")"
gcloud compute instances create "build-upload" \
--machine-type=n1-highcpu-2 \
--metadata=release_tag=v${VER},prerelease=${PRE} \
--metadata-from-file=startup-script=${DIR}/release-ci.sh \
--zone=us-west1-a \
--project ${PROJECT}