Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enum plus plus #199

Merged
merged 5 commits into from
Jul 2, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Create a simple lane to setup certificates
  • Loading branch information
pietrocaselani committed Jul 2, 2019
commit 389380d6ac3feeea23addf6bbca534727aceb080
11 changes: 8 additions & 3 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,21 @@ platform :ios do
secrets_param = branch == 'master' ? '' : 'empty'

sh("../scripts/generate_secrets #{secrets_param}", log: false)
sh('cd .. && tuist generate')

pods
# sh('cd .. && tuist generate')
# pods
end

desc 'Run bundle exec pod install --repo-update'
lane :pods do
cocoapods(podfile: '.', repo_update: false)
end

desc 'Setup Certificates'
lane :setup_certs do
match(type: 'development')
match(type: 'appstore')
end

desc 'Run CouchTrackerCore tests'
lane :tests do
run_tests_for_scheme(scheme: 'TVDBSwiftTests')
Expand Down
5 changes: 5 additions & 0 deletions fastlane/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ or alternatively using `brew cask install fastlane`
fastlane ios pods
```
Run bundle exec pod install --repo-update
### ios setup_certs
```
fastlane ios setup_certs
```
Setup Certificates
### ios tests
```
fastlane ios tests
Expand Down