mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-22 04:11:14 +00:00
Commit the rest of the build changes
I accedintally committed ./scripts in 99be44ca25
This commit is contained in:
parent
a9c80aa387
commit
aa0d113de3
5 changed files with 11 additions and 140 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -14,6 +14,8 @@ build/
|
||||||
gen/
|
gen/
|
||||||
obj/
|
obj/
|
||||||
.gradle/
|
.gradle/
|
||||||
|
syncthing/gobuild
|
||||||
|
syncthing/pkg
|
||||||
|
|
||||||
# Local configuration file (sdk path, etc)
|
# Local configuration file (sdk path, etc)
|
||||||
local.properties
|
local.properties
|
||||||
|
|
|
@ -39,3 +39,6 @@ cache:
|
||||||
script:
|
script:
|
||||||
- ./gradlew lint
|
- ./gradlew lint
|
||||||
- ./gradlew buildNative assembleDebug
|
- ./gradlew buildNative assembleDebug
|
||||||
|
|
||||||
|
notifications:
|
||||||
|
email: false
|
||||||
|
|
|
@ -2,99 +2,11 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
NEW_VERSION_NAME=$1
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
LATEST_TAG=$2
|
$SCRIPT_DIR/update-syncthing.bash "$2"
|
||||||
OLD_VERSION_NAME=$(grep "versionName" "app/build.gradle" | awk '{print $2}')
|
$SCRIPT_DIR/check-version.bash "$1"
|
||||||
if [[ -z ${NEW_VERSION_NAME} ]]
|
$SCRIPT_DIR/pull-translations.bash
|
||||||
then
|
$SCRIPT_DIR/bump-version.bash "$1"
|
||||||
echo "New version name is empty. Please set a new version. Current version: $OLD_VERSION_NAME"
|
|
||||||
exit
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "
|
|
||||||
|
|
||||||
Checking for Syncthing Update
|
|
||||||
-----------------------------
|
|
||||||
"
|
|
||||||
PROJECT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
||||||
cd "syncthing/src/github.com/syncthing/syncthing/"
|
|
||||||
git fetch
|
|
||||||
CURRENT_TAG=$(git describe)
|
|
||||||
if [ -z "$LATEST_TAG" ]; then
|
|
||||||
# Also consider Syncthing rc releases if we are building beta or rc.
|
|
||||||
if [[ "$NEW_VERSION_NAME" == *beta* ]] || [[ "$NEW_VERSION_NAME" == *rc* ]]; then
|
|
||||||
LATEST_TAG=$(git tag --sort=taggerdate | tail -1)
|
|
||||||
else
|
|
||||||
LATEST_TAG=$(git tag --sort=taggerdate | awk '!/rc/' | tail -1)
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ ${CURRENT_TAG} != ${LATEST_TAG} ]; then
|
|
||||||
git checkout -f ${LATEST_TAG}
|
|
||||||
cd ${PROJECT_DIR}
|
|
||||||
git add "syncthing/src/github.com/syncthing/syncthing/"
|
|
||||||
git commit -m "Updated Syncthing to $LATEST_TAG"
|
|
||||||
./gradlew cleanNative buildNative
|
|
||||||
fi
|
|
||||||
cd ${PROJECT_DIR}
|
|
||||||
|
|
||||||
|
|
||||||
echo "
|
|
||||||
|
|
||||||
Updating Translations
|
|
||||||
-----------------------------
|
|
||||||
"
|
|
||||||
tx push -s
|
|
||||||
# Force push/pull to make sure this is executed. Apparently tx only compares timestamps, not file
|
|
||||||
# contents. So if a file was `touch`ed, it won't be updated by default.
|
|
||||||
# Use multiple transifex instances for pulling to speed things up.
|
|
||||||
tx pull -a -f -r "syncthing-android.stringsxml" &
|
|
||||||
tx pull -a -f -r "syncthing-android.description_fulltxt" &
|
|
||||||
tx pull -a -f -r "syncthing-android.description_shorttxt" &
|
|
||||||
tx pull -a -f -r "syncthing-android.titletxt" &
|
|
||||||
wait
|
|
||||||
./gradlew deleteUnsupportedPlayTranslations
|
|
||||||
git add -A "app/src/main/play/"
|
|
||||||
git add -A "app/src/main/res/values-*/strings.xml"
|
|
||||||
if ! git diff --cached --exit-code;
|
|
||||||
then
|
|
||||||
git commit -m "Imported translations"
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
echo "
|
|
||||||
|
|
||||||
Running Lint
|
|
||||||
-----------------------------
|
|
||||||
"
|
|
||||||
./gradlew clean lintVitalRelease
|
|
||||||
|
|
||||||
echo "
|
|
||||||
|
|
||||||
Enter Changelog for $NEW_VERSION_NAME
|
|
||||||
-----------------------------
|
|
||||||
"
|
|
||||||
changelog_file="build/changelog.tmp"
|
|
||||||
touch ${changelog_file}
|
|
||||||
nano ${changelog_file}
|
|
||||||
|
|
||||||
cat ${changelog_file}
|
|
||||||
mv ${changelog_file} "app/src/main/play/en-GB/whatsnew"
|
|
||||||
|
|
||||||
echo "
|
|
||||||
|
|
||||||
Updating Version
|
|
||||||
-----------------------------
|
|
||||||
"
|
|
||||||
OLD_VERSION_CODE=$(grep "versionCode" "app/build.gradle" -m 1 | awk '{print $2}')
|
|
||||||
NEW_VERSION_CODE=$(($OLD_VERSION_CODE + 1))
|
|
||||||
sed -i "s/versionCode $OLD_VERSION_CODE/versionCode $NEW_VERSION_CODE/" "app/build.gradle"
|
|
||||||
|
|
||||||
OLD_VERSION_NAME=$(grep "versionName" "app/build.gradle" | awk '{print $2}')
|
|
||||||
sed -i "s/$OLD_VERSION_NAME/\"$1\"/" "app/build.gradle"
|
|
||||||
git add "app/build.gradle" "app/src/main/play/en-GB/whatsnew"
|
|
||||||
git commit -m "Bumped version to $NEW_VERSION_NAME"
|
|
||||||
git tag ${NEW_VERSION_NAME}
|
|
||||||
|
|
||||||
echo "
|
echo "
|
||||||
Update ready.
|
Update ready.
|
||||||
|
|
|
@ -1,46 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
version=$(git describe --tags)
|
|
||||||
regex='^[0-9]+\.[0-9]+\.[0-9]+$'
|
|
||||||
if [[ ! ${version} =~ $regex ]]
|
|
||||||
then
|
|
||||||
echo "Current commit is not a release"
|
|
||||||
exit;
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "
|
|
||||||
|
|
||||||
Pushing to Github
|
|
||||||
-----------------------------
|
|
||||||
"
|
|
||||||
git push
|
|
||||||
git push --tags
|
|
||||||
|
|
||||||
echo "
|
|
||||||
|
|
||||||
Push to Google Play
|
|
||||||
-----------------------------
|
|
||||||
"
|
|
||||||
|
|
||||||
read -s -p "Enter signing password: " password
|
|
||||||
|
|
||||||
SIGNING_PASSWORD=${password} ./gradlew assembleRelease
|
|
||||||
|
|
||||||
# Upload apk and listing to Google Play
|
|
||||||
SIGNING_PASSWORD=${password} ./gradlew publishRelease
|
|
||||||
|
|
||||||
echo "
|
|
||||||
|
|
||||||
Release published!
|
|
||||||
"
|
|
||||||
|
|
||||||
#echo "
|
|
||||||
#
|
|
||||||
#Create Github Release
|
|
||||||
#-----------------------------
|
|
||||||
#"
|
|
||||||
#ACCESS_TOKEN=""
|
|
||||||
#api_json=$(printf '{"tag_name": "v%s","target_commitish": "master","name": "v%s","body": "%s","draft": false,"prerelease": false}' $version $version $changelog)
|
|
||||||
#curl --data "$api_json" https://api.github.com/repos/syncthing/syncthing-android/releases?access_token=$ACCESS_TOKEN
|
|
|
@ -17,7 +17,7 @@ fi
|
||||||
|
|
||||||
cd "syncthing/src/github.com/syncthing/syncthing/"
|
cd "syncthing/src/github.com/syncthing/syncthing/"
|
||||||
CURRENT_TAG=$(git describe)
|
CURRENT_TAG=$(git describe)
|
||||||
if [ "v${NEW_VERSION_NAME#$CURRENT_TAG}" = "v${NEW_VERSION_NAME}" ]; then
|
if [ "${NEW_VERSION_NAME#${CURRENT_TAG#v}}" = "${NEW_VERSION_NAME}" ]; then
|
||||||
printf "New version name %s is not compatible with Syncthing version %s\n" \
|
printf "New version name %s is not compatible with Syncthing version %s\n" \
|
||||||
"$NEW_VERSION_NAME" "$CURRENT_TAG"
|
"$NEW_VERSION_NAME" "$CURRENT_TAG"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Reference in a new issue