Skip to content

Commit

Permalink
Run static pod test on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
frederoni committed Apr 15, 2019
1 parent 4008b83 commit 3bc1d47
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,25 @@ jobs:
- checkout
- run: swift build

static-pod-test:
parameters:
xcode:
type: string
macos:
xcode: << parameters.xcode >>
environment:
HOMEBREW_NO_AUTO_UPDATE: 1
steps:
- checkout
- run:
name: CP static obj-c
command: |
cd Tests/PodTests/static
brew install xcodegen
xcodegen generate
pod install
xcodebuild -sdk iphonesimulator -workspace StaticPod.xcworkspace -scheme 'app' clean build | xcpretty
build-job:
parameters:
xcode:
Expand Down Expand Up @@ -126,3 +145,6 @@ workflows:
- spm-job:
name: "SPM_build"
xcode: "10.2.0"
- static-pod-test:
name: "CP_static"
xcode: "10.2.0"

0 comments on commit 3bc1d47

Please sign in to comment.