mirror of
https://github.com/mastodon/mastodon-ios.git
synced 2024-12-11 08:06:23 +01:00
4517a4fffb
* Remove Cocoapods and Workspace
* Fix build
* Fix build again 🤦
* Update docs
* Fix fastlane to not use workspace anymore
* Update Documentation/Setup.md
Co-authored-by: Marcus Kida <marcus.kida@bearologics.com>
* Pin versions for swiftgen/sourcery
* Improve docs
---------
Co-authored-by: Marcus Kida <marcus.kida@bearologics.com>
13 lines
328 B
Bash
Executable File
13 lines
328 B
Bash
Executable File
#!/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 \
|
|
-scheme Mastodon \
|
|
-destination "platform=iOS Simulator,name=iPhone SE (3rd generation)" \
|
|
clean \
|
|
build | xcpretty
|