Download this file
| 1 | .PHONY: ci test companion |
| 2 | ci: test companion |
| 3 | test: |
| 4 | swift test |
| 5 | companion: |
| 6 | cd examples/companion && xcodegen generate |
| 7 | xcodebuild -project examples/companion/Companion.xcodeproj -scheme CompanionMac -destination 'platform=macOS' -derivedDataPath examples/companion/build CODE_SIGNING_ALLOWED=NO build |
| 8 | xcodebuild -project examples/companion/Companion.xcodeproj -scheme CompanionIOS -sdk iphonesimulator -derivedDataPath examples/companion/build CODE_SIGNING_ALLOWED=NO build |
| 9 | |