Skip to content
Snippets Groups Projects
Commit 46f91faa authored by Zandor Smith's avatar Zandor Smith :computer:
Browse files

Separate building the pod and the example app.

parent db25d31e
No related branches found
No related tags found
No related merge requests found
Pipeline #3461 failed
......@@ -15,13 +15,23 @@ setup:
tags:
- xcode
build:
build-pod:
stage: build
script:
- cd Example/
- pod install
- cd ../
- set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/WhiteNavigationController.xcworkspace -scheme WhiteNavigationController-Example -sdk iphonesimulator12.2 ONLY_ACTIVE_ARCH=NO | xcpretty
- set -o pipefail && xcodebuild build -enableCodeCoverage YES -workspace Example/WhiteNavigationController.xcworkspace -scheme WhiteNavigationController -sdk iphonesimulator12.2 ONLY_ACTIVE_ARCH=NO | xcpretty
tags:
- xcode
build-example:
stage: build
script:
- cd Example/
- pod install
- cd ../
- set -o pipefail && xcodebuild build -enableCodeCoverage YES -workspace Example/WhiteNavigationController.xcworkspace -scheme WhiteNavigationController-Example -sdk iphonesimulator12.2 ONLY_ACTIVE_ARCH=NO | xcpretty
tags:
- xcode
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment