diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index e0b0ba7dd..9a52626ab 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -19,7 +19,7 @@ steps: ################# # Validate Podspec ################# - - label: "🔬 Validating Podspec" + - label: "🔬 Validate Podspec" key: "validate" command: "validate_podspec" env: *common_env diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index b9f2a14dc..000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,33 +0,0 @@ -version: 2.1 - -orbs: - # Using 1.0 of our Orbs means it will use the latest 1.0.x version from https://github.com/wordpress-mobile/circleci-orbs - ios: wordpress-mobile/ios@1.0 - -# YAML anchors for some common/repeated values -x-common-params: - - &xcode-version "12.5.0" - - &podspec "WordPressAuthenticator.podspec" - - &on-tags-only - tags: - only: /.*/ - branches: - ignore: /.*/ - -workflows: - test_and_validate: - jobs: - - ios/test: - name: Test - xcode-version: *xcode-version - workspace: WordPressAuthenticator.xcworkspace - scheme: WordPressAuthenticator - device: iPhone 11 - ios-version: "14.5" - bundle-install: true - pod-install: true - - ios/validate-podspec: - name: Validate Podspec - xcode-version: *xcode-version - podspec-path: *podspec - bundle-install: true