element-ios/Tools/Release/buildRelease.sh

64 lines
1.1 KiB
Bash
Raw Normal View History

2019-04-26 09:08:35 +00:00
#!/bin/sh
2019-04-26 09:30:21 +00:00
# Use sudo less Ruby
2019-04-26 09:08:35 +00:00
export GEM_HOME=$HOME/.gem
export PATH=$GEM_HOME/bin:$PATH
2019-04-26 09:30:21 +00:00
2019-04-26 09:08:35 +00:00
if [ ! $# -eq 1 ]; then
echo "Usage: ./buildRelease.sh [tag or branch]"
exit 1
fi
if [ ! -n "$APPLE_ID" ]; then
echo "You must set the APPLE_ID env var before calling this script"
echo 'export APPLE_ID="foo.bar@apple.com"'
exit 1
fi
TAG=$1
BUILD_DIR="build"/$TAG
BUILD_NUMBER=$( date +%Y%m%d%H%M%S )
if [ -e $BUILD_DIR ]; then
echo "Error: Folder ${BUILD_DIR} already exists"
exit 1
fi
# Fastlane update
gem install bundler
bundle install
bundle update
2019-04-26 09:30:21 +00:00
2019-04-26 09:08:35 +00:00
# Checkout the source to build
mkdir -p $BUILD_DIR
cd $BUILD_DIR
git clone https://github.com/vector-im/riot-ios.git
2019-04-26 09:08:35 +00:00
cd riot-ios
git checkout -b $TAG $TAG
2019-04-26 09:08:35 +00:00
# Develop branch special case
if [ "$TAG" = "develop" ]; then
./use-dev-pods.sh
fi
# Build
bundle exec fastlane app_store build_number:$BUILD_NUMBER
# Check ipa
./checkipa.sh out/Riot.ipa
if [ -e out/Riot.ipa ]; then
# Here is the artefact
cp out/Riot.ipa ../../../Riot-$TAG-$BUILD_NUMBER.ipa
echo "Riot-$TAG-$BUILD_NUMBER.ipa has been successfully built"
fi