Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# For a detailed guide to building and testing on iOS, read the docs:
# https://circleci.com/docs/2.0/testing-ios/

version: 2.1

jobs:
build:

macos:
xcode: 11.0.0 # Specify the Xcode version to use

steps:
- checkout
#- run: pod install # Install CocoaPods dependencies
#- run: fastlane scan # Run tests using Fastlane

# Collect XML test results data to show in the UI, and save the same XML
# files under test-results folder in the Artifacts tab
- store_test_results:
path: test_output
- store_artifacts:
path: test_output
destination: scan-output

workflows:
version: 2
dev_stage_pre-prod:
jobs:
- build:
filters: # using regex filters requires the entire branch to match
branches:
only: # only branches matching the below regex filters will run
- ci-testing