From b52aea7752767ebd2d3934003912acb4a1d5425b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danny=20M=C3=B6sch?= Date: Sun, 19 Jan 2025 13:20:39 +0100 Subject: [PATCH] Remove CocoaPods lint job from PR builds in favor of a single pre-release check --- Makefile | 2 +- azure-pipelines.yml | 13 ------------- 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/Makefile b/Makefile index 319f0e58e7..f0b09ff520 100644 --- a/Makefile +++ b/Makefile @@ -173,7 +173,7 @@ pod_publish: pod_lint: bundle install - bundle exec pod lib lint SwiftLint.podspec + bundle exec pod lib lint --verbose SwiftLint.podspec docs: swift run swiftlint generate-docs diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2bb78a9448..f9bfe1dc97 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -70,19 +70,6 @@ jobs: - script: swift build -c release --product SwiftLintBuildToolPlugin displayName: Build build tool plugin -- job: CocoaPods - pool: - vmImage: 'macOS-14' - variables: - DEVELOPER_DIR: /Applications/Xcode_16.1.app - steps: - - script: bundle install --path vendor/bundle - displayName: Install dependencies - - script: bundle exec pod repo update - displayName: Update CocoaPods repo - - script: bundle exec pod lib lint --platforms=macos --verbose - displayName: Lint Podspec for macOS - - job: Jazzy pool: vmImage: 'macOS-14'