Move Analyze CI job to Buildkite (#3919)

We now have two Buildkite agents thanks to a newly added M1 Mac mini
from MacStadium. Running the analyze job should be considerably faster
than the VMs that run on Azure Pipelines, although still slower than
if we were to run them with Xcode 13.2.1 because of the performance
regressions described in https://github.com/realm/SwiftLint/issues/3920.
This commit is contained in:
JP Simard 2022-04-05 12:05:38 -04:00 committed by GitHub
parent 5897598ba8
commit cb5fa0425d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 9 deletions

View File

@ -3,3 +3,5 @@ steps:
commands:
- bundle install
- bundle exec danger --verbose
- label: "Analyze"
command: make analyze

View File

@ -71,15 +71,6 @@ jobs:
- script: bundle exec pod lib lint --verbose
displayName: pod lib lint
- job: Analyze
pool:
vmImage: 'macOS-11'
variables:
DEVELOPER_DIR: /Applications/Xcode_13.2.1.app
steps:
- script: make analyze
displayName: Run SwiftLint Analyze
- job: TSan
pool:
vmImage: 'macOS-11'