Skip to content

Commit

Permalink
Add podfile linting step and cartage build & archive step
Browse files Browse the repository at this point in the history
Instead of CodeCov,  use JUnit to process Xcode test results and publish these results back to Azure DevOps
  • Loading branch information
cloudcosmonaut committed Oct 2, 2020
1 parent f5fd741 commit a05f474
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions azure-pipelines.yml
Expand Up @@ -35,3 +35,16 @@ steps:
destinationPlatformOption: 'iOS'
destinationSimulators: 'iPhone 11'
publishJUnitResults: true
- task: Bash@3
displayName: 'Cocoapod lint'
inputs:
targetType: inline
script: |
bundle exec pod lib lint --quick
- task: Bash@3
displayName: 'Build and archive for cartage'
inputs:
targetType: inline
script: |
carthage build --no-skip-current
carthage archive RFIBANHelper

0 comments on commit a05f474

Please sign in to comment.