mattermost-mobile/scripts/build.sh
Mattermost Build b5b2310f33
update dependencies (#4958) (#4968)
* update dependencies

* revert keychain update

* Update dependencies & Fastlane

* set path agnostic for bash in scrips

* Fix open from push notification race

* patch react-native-localize

(cherry picked from commit b226d451f3)

Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
2020-11-19 13:37:43 -03:00

97 lines
No EOL
2 KiB
Bash
Executable file

#!/usr/bin/env bash
function execute() {
cd fastlane && NODE_ENV=production bundle exec fastlane $1 $2
}
function apk() {
case $1 in
unsigned)
echo "Building Android unsigned app"
setup android
execute android unsigned
;;
*)
echo "Building Android app"
setup android
execute android build
esac
}
function ipa() {
case $1 in
unsigned)
echo "Building iOS unsigned app"
setup ios
execute ios unsigned
;;
simulator)
echo "Building unsigned x86_64 iOS app for iPhone simulator"
setup ios
execute ios simulator
;;
*)
echo "Building iOS app"
setup ios
execute ios build
esac
}
function setup() {
if [[ -z "$SKIP_SETUP" ]]; then
npm run clean || exit 1
npm install --ignore-scripts || exit 1
npx patch-package || exit 1
if [[ "$1" == "ios"* ]]; then
echo "Installing Gems"
npm run ios-gems &> /dev/null || exit 1
echo "Getting Cocoapods dependencies"
npm run pod-install || exit 1
fi
ASSETS=$(node scripts/generate-assets.js)
if [ -z "$ASSETS" ]; then
echo "Error Generating app assets"
exit 1
else
echo "Generating app assets"
fi
echo "Installing Fastane"
if !gem list bundler -i --version 2.1.4 > /dev/null 2>&1; then
gem install bundler --version 2.1.4
fi
cd fastlane && bundle install && cd .. || exit 1
fi
if [ "$1" = "android" ]; then
./node_modules/.bin/jetify
fi
}
case $1 in
apk)
apk $2
;;
ipa)
if [[ "$OSTYPE" == "darwin"* ]]; then
ipa $2
else
echo "You need a MacOS to build the iOS mobile app"
exit 1
fi
;;
*)
echo "Build the mobile app for Android or iOS
Usage: build.sh <type> [options]
Type:
apk Builds Android APK(s)
ipa Builds iOS IPA
Options:
apk: unsigned
ipa: unsigned or simulator"
;;
esac