mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-17 19:09:56 +00:00
Don't consider the build broken if a feature branch is broken. Move the actual build command to a separate script -- easier to read, easier to maintain, and easier to run by hand.
8 lines
205 B
Bash
Executable File
8 lines
205 B
Bash
Executable File
#!/bin/sh
|
|
xctool \
|
|
-workspace AsyncDisplayKit.xcworkspace \
|
|
-scheme AsyncDisplayKit \
|
|
-sdk iphonesimulator8.1 \
|
|
-destination "platform=iOS Simulator,OS=${1},name=iPhone 5" \
|
|
build test
|