Skip to content

Commit 11e558c

Browse files
committed
Remove CircleCI
1 parent 2d53260 commit 11e558c

File tree

5 files changed

+10
-318
lines changed

5 files changed

+10
-318
lines changed

.circleci/cache-version

Lines changed: 0 additions & 2 deletions
This file was deleted.

.circleci/config.yml

Lines changed: 0 additions & 298 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# WordPress for iOS #
22

3-
[![CircleCI](https://circleci.com/gh/wordpress-mobile/WordPress-iOS.svg?style=svg)](https://circleci.com/gh/wordpress-mobile/WordPress-iOS)
3+
[![Build status](https://badge.buildkite.com/2f3fbb17bfbb5bba508efd80f1ea8d640db5ca2465a516a457.svg)](https://buildkite.com/automattic/wordpress-ios)
44
[![Reviewed by Hound](https://img.shields.io/badge/Reviewed_by-Hound-8E64B0.svg)](https://houndci.com)
55

66
## Build Instructions

Rakefile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -345,10 +345,7 @@ namespace :install do
345345
end
346346

347347
def get_ci_xcode_version
348-
ci_config = File.read(".circleci/config.yml")
349-
specs = YAML.load(ci_config)
350-
351-
ci_version = specs["jobs"]["Build Tests"]["executor"]["xcode-version"]
348+
ci_version = File.read(".xcversion")
352349
end
353350
end
354351

fastlane/Fastfile

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,6 @@ before_all do |lane|
6565
unless File.file?(PROJECT_ENV_FILE_PATH)
6666
UI.user_error!("project.env not found at #{PROJECT_ENV_FILE_PATH}: Make sure your configuration is up to date with `rake dependencies`")
6767
end
68-
69-
# This allows code signing to work on CircleCI
70-
# It is skipped if this isn't running on CI
71-
# See https://circleci.com/docs/2.0/ios-codesigning/
72-
setup_circle_ci
7368
end
7469

7570
platform :ios do
@@ -791,11 +786,11 @@ platform :ios do
791786
#
792787
#####################################################################################
793788
lane :trigger_beta_build do |options|
794-
circleci_trigger_job(
795-
circle_ci_token: ENV['CIRCLE_CI_AUTH_TOKEN'],
796-
repository: REPOSITORY_NAME,
789+
buildkite_trigger_build(
790+
buildkite_organization: 'automattic',
791+
buildkite_pipeline: 'wordpress-ios',
797792
branch: options[:branch_to_build],
798-
job_params: { 'beta_build' => true }
793+
pipeline_file: 'release-builds.yml'
799794
)
800795
end
801796

@@ -809,11 +804,11 @@ platform :ios do
809804
#
810805
#####################################################################################
811806
lane :trigger_release_build do |options|
812-
circleci_trigger_job(
813-
circle_ci_token: ENV['CIRCLE_CI_AUTH_TOKEN'],
814-
repository: REPOSITORY_NAME,
807+
buildkite_trigger_build(
808+
buildkite_organization: 'automattic',
809+
buildkite_pipeline: 'wordpress-ios',
815810
branch: options[:branch_to_build],
816-
job_params: { 'release_build' => true }
811+
pipeline_file: 'release-builds.yml'
817812
)
818813
end
819814

0 commit comments

Comments
 (0)