mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2026-03-18 20:02:25 +00:00
9e8343b1a6
* remove carthage from building test project * get test fixture compiling
13 lines
422 B
Bash
Executable File
13 lines
422 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
echo "
|
|
⚙️ Building iOS app"
|
|
xcodebuild -quiet -workspace Workspace.xcworkspace -scheme "App_iOS Test" -configuration "Test Debug" -xcconfig fixtures.xcconfig
|
|
echo "✅ Successfully built iOS app"
|
|
|
|
echo "
|
|
⚙️ Building macOS app"
|
|
xcodebuild -quiet -workspace Workspace.xcworkspace -scheme "App_macOS" -configuration "Test Debug" -xcconfig fixtures.xcconfig
|
|
echo "✅ Successfully built macOS app"
|