13 lines
397 B
Bash
13 lines
397 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -eo pipefail
|
||
|
|
||
|
# build with SwiftPM:
|
||
|
# https://developer.apple.com/documentation/swift_packages/building_swift_packages_or_apps_that_use_them_in_continuous_integration_workflows
|
||
|
|
||
|
xcodebuild -workspace Mastodon.xcworkspace \
|
||
|
-scheme Mastodon \
|
||
|
-disableAutomaticPackageResolution \
|
||
|
-destination "platform=iOS Simulator,name=iPhone SE (2nd generation)" \
|
||
|
clean \
|
||
|
build | xcpretty
|