-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from tarappo/master
Release 2019.02.04
- Loading branch information
Showing
7 changed files
with
197 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# iOS CircleCI 2.0 configuration file | ||
# | ||
# Check https://circleci.com/docs/2.0/ios-migrating-from-1-2/ for more details | ||
# | ||
version: 2 | ||
jobs: | ||
build: | ||
|
||
# Specify the Xcode version to use | ||
macos: | ||
xcode: "10.2.0" | ||
|
||
steps: | ||
- checkout | ||
|
||
# Install CocoaPods | ||
# - run: | ||
# name: Install CocoaPods | ||
# command: pod install | ||
|
||
# Build the app and run tests | ||
- run: | ||
name: Build and run tests | ||
command: fastlane scan | ||
environment: | ||
SCAN_DEVICE: iPhone 6 | ||
|
||
# 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/report.xml | ||
- store_artifacts: | ||
path: /tmp/test-results | ||
destination: scan-test-results | ||
- store_artifacts: | ||
path: ~/Library/Logs/scan | ||
destination: scan-logs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.