11 lines
312 B
Bash
11 lines
312 B
Bash
|
|
||
|
#!/bin/bash
|
||
|
|
||
|
set -eo pipefail
|
||
|
|
||
|
python3 toolchain.py create Touchtracer kivy-ci-clone/examples/demo/touchtracer
|
||
|
|
||
|
xcodebuild -project touchtracer-ios/touchtracer.xcodeproj \
|
||
|
-scheme touchtracer \
|
||
|
-destination generic/platform=iOS\
|
||
|
clean build CODE_SIGNING_ALLOWED=NO | xcpretty
|