-
Notifications
You must be signed in to change notification settings - Fork 9
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 #186 from pietrocaselani/prepare_test_flight
Preparing to Test Flight
- Loading branch information
Showing
66 changed files
with
849 additions
and
330 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,76 @@ | ||
version: 2 | ||
|
||
jobs: | ||
build-and-test: | ||
macos: | ||
xcode: '10.1.0' | ||
environment: | ||
LANG: en_US.UTF-8 | ||
steps: | ||
- checkout | ||
- restore_cache: | ||
key: 1-gems-{{ checksum "Gemfile.lock" }} | ||
- restore_cache: | ||
key: 1-pods-{{ checksum "Podfile.lock" }} | ||
- run: | ||
name: Setup build dependencies | ||
command: bash setup.sh | ||
- save_cache: | ||
key: 1-gems-{{ checksum "Gemfile.lock" }} | ||
paths: | ||
- vendor/bundle | ||
- save_cache: | ||
key: 1-pods-{{ checksum "Podfile.lock" }} | ||
paths: | ||
- Pods | ||
- run: | ||
name: Build and run tests | ||
command: bundle exec fastlane lint | ||
# 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: reports/ | ||
- 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 | ||
beta-release: | ||
macos: | ||
xcode: '10.1.0' | ||
environment: | ||
LANG: en_US.UTF-8 | ||
steps: | ||
- checkout | ||
- restore_cache: | ||
key: 1-gems-{{ checksum "Gemfile.lock" }} | ||
- restore_cache: | ||
key: 1-pods-{{ checksum "Podfile.lock" }} | ||
- run: | ||
name: Setup build dependencies | ||
command: bash setup.sh | ||
- save_cache: | ||
key: 1-gems-{{ checksum "Gemfile.lock" }} | ||
paths: | ||
- vendor/bundle | ||
- save_cache: | ||
key: 1-pods-{{ checksum "Podfile.lock" }} | ||
paths: | ||
- Pods | ||
- run: | ||
name: Release to Test Flight | ||
command: bundle exec fastlane beta | ||
|
||
workflows: | ||
version: 2 | ||
build-test-deploy: | ||
jobs: | ||
- build-and-test | ||
- beta-release: | ||
filters: | ||
branches: | ||
only: master |
This file was deleted.
Oops, something went wrong.
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,6 @@ | ||
tap 'blender/homebrew-tap' | ||
brew 'rome' | ||
brew 'swiftlint' | ||
brew 'sonar-scanner' | ||
brew 'tailor' | ||
brew 'swiftformat' |
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
41 changes: 34 additions & 7 deletions
41
...xcassets/AppIcon.appiconset/Contents.json → ...xcassets/AppIcon.appiconset/Contents.json
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"info" : { | ||
"version" : 1, | ||
"author" : "xcode" | ||
} | ||
} |
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.