зеркало из https://github.com/mozilla/glean.git
18 строки
510 B
Bash
Executable File
18 строки
510 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
set -euvx
|
|
|
|
set -o pipefail && \
|
|
xcodebuild \
|
|
-workspace ./glean-core/ios/Glean.xcodeproj/project.xcworkspace \
|
|
-scheme Glean \
|
|
-sdk iphonesimulator \
|
|
-destination 'platform=iOS Simulator,name=iPhone 11' \
|
|
build | \
|
|
tee raw_xcodebuild.log | \
|
|
xcpretty && exit "${PIPESTATUS[0]}"
|