Move CocoaPods CI jobs to GitHub Actions (#3819)

This commit is contained in:
JP Simard 2022-01-24 18:24:42 -05:00 committed by GitHub
parent 4c3bb24a04
commit 2bd54cf3ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 13 deletions

19
.github/workflows/pod_lib_lint.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: pod lib lint
on:
push:
branches: [master]
pull_request:
branches: ['*']
jobs:
pod_lib_lint:
name: pod lib lint
runs-on: macos-latest
env:
DEVELOPER_DIR: /Applications/Xcode_13.2.1.app
steps:
- uses: actions/checkout@v2
- run: bundle install --path vendor/bundle
- run: bundle exec pod repo update
- run: bundle exec pod lib lint --verbose

View File

@ -30,19 +30,6 @@ jobs:
testResultsFiles: build/reports/**
condition: succeededOrFailed()
- job: CocoaPods
pool:
vmImage: 'macOS-11'
variables:
DEVELOPER_DIR: /Applications/Xcode_13.0.app
steps:
- script: bundle install --path vendor/bundle
displayName: bundle install
- script: bundle exec pod repo update
displayName: pod repo update
- script: bundle exec pod lib lint --verbose SwiftLintFramework.podspec
displayName: pod lib lint
- job: Analyze
pool:
vmImage: 'macOS-11'