16 lines
306 B
YAML
16 lines
306 B
YAML
machine:
|
|
xcode:
|
|
version: "7.0"
|
|
|
|
test:
|
|
override:
|
|
- set -o pipefail && xcodebuild -workspace Stencil.xcworkspace -scheme Stencil test | tee $CIRCLE_ARTIFACTS/xcode_raw_ios.log | xcpretty -c
|
|
- pod lib lint
|
|
|
|
deployment:
|
|
release:
|
|
tag: /v?\d+\.\d+\.*/
|
|
commands:
|
|
- pod trunk push
|
|
|