Skip to content

Commit fff3b03

Browse files
committed
Update CI
1 parent 2e3bdad commit fff3b03

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

‎buildbox/build-telegram-next.sh

+6-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ cp "$BAZEL" "tools/bazel"
3333

3434
BUILD_CONFIGURATION="$1"
3535

36-
if [ "$BUILD_CONFIGURATION" == "hockeyapp" ] || [ "$BUILD_CONFIGURATION" == "appcenter-experimental" ] || [ "$BUILD_CONFIGURATION" == "appcenter-experimental-2" ]; then
36+
if [ "$BUILD_CONFIGURATION" == "hockeyapp" ] || [ "$BUILD_CONFIGURATION" == "appcenter-experimental" ] || [ "$BUILD_CONFIGURATION" == "appcenter-experimental-2" ] || [ "$BUILD_CONFIGURATION" == "App Store-development" ]; then
3737
CODESIGNING_SUBPATH="$BUILDBOX_DIR/transient-data/telegram-codesigning/codesigning"
3838
elif [ "$BUILD_CONFIGURATION" == "appstore" ]; then
3939
CODESIGNING_SUBPATH="$BUILDBOX_DIR/transient-data/telegram-codesigning/codesigning"
@@ -64,7 +64,7 @@ fi
6464

6565
BASE_DIR=$(pwd)
6666

67-
if [ "$BUILD_CONFIGURATION" == "hockeyapp" ] || [ "$BUILD_CONFIGURATION" == "appcenter-experimental" ] || [ "$BUILD_CONFIGURATION" == "appcenter-experimental-2" ] || [ "$BUILD_CONFIGURATION" == "appstore" ]; then
67+
if [ "$BUILD_CONFIGURATION" == "hockeyapp" ] || [ "$BUILD_CONFIGURATION" == "appcenter-experimental" ] || [ "$BUILD_CONFIGURATION" == "appcenter-experimental-2" ] || [ "$BUILD_CONFIGURATION" == "appstore" ] || [ "$BUILD_CONFIGURATION" == "appstore-development" ]; then
6868
if [ ! `which generate-configuration.sh` ]; then
6969
echo "generate-configuration.sh not found in PATH $PATH"
7070
exit 1
@@ -82,6 +82,10 @@ if [ "$BUILD_CONFIGURATION" == "hockeyapp" ] || [ "$BUILD_CONFIGURATION" == "app
8282
generate-configuration.sh appstore release "$BASE_DIR/$BUILDBOX_DIR/transient-data/telegram-codesigning" "$BASE_DIR/$BUILDBOX_DIR/transient-data/build-configuration"
8383
;;
8484

85+
"appstore-development")
86+
generate-configuration.sh appstore development "$BASE_DIR/$BUILDBOX_DIR/transient-data/telegram-codesigning" "$BASE_DIR/$BUILDBOX_DIR/transient-data/build-configuration"
87+
;;
88+
8589
*)
8690
echo "Unknown build configuration $BUILD_CONFIGURATION"
8791
exit 1

‎buildbox/guest-build-telegram.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ security import "build-system/AppleWWDRCAG3.cer" -k "$MY_KEYCHAIN" -P "" -T /usr
8181

8282
security set-key-partition-list -S apple-tool:,apple: -k "$MY_KEYCHAIN_PASSWORD" "$MY_KEYCHAIN"
8383

84-
if [ "$1" == "hockeyapp" ] || [ "$1" == "appcenter-experimental" ] || [ "$1" == "appcenter-experimental-2" ]; then
84+
if [ "$1" == "hockeyapp" ] || [ "$1" == "appcenter-experimental" ] || [ "$1" == "appcenter-experimental-2" ] || [ "$1" == "App Store-development" ]; then
8585
APP_CONFIGURATION="release_arm64"
8686
elif [ "$1" == "appstore" ]; then
8787
APP_CONFIGURATION="release_universal"

0 commit comments

Comments
 (0)