@@ -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
7368end
7469
7570platform :ios do
@@ -847,11 +842,11 @@ platform :ios do
847842 #
848843 #####################################################################################
849844 lane :trigger_beta_build do |options |
850- circleci_trigger_job (
851- circle_ci_token : ENV [ 'CIRCLE_CI_AUTH_TOKEN' ] ,
852- repository : REPOSITORY_NAME ,
845+ buildkite_trigger_build (
846+ buildkite_organization : 'automattic' ,
847+ buildkite_pipeline : 'wordpress-ios' ,
853848 branch : options [ :branch_to_build ] ,
854- job_params : { 'beta_build' => true }
849+ pipeline_file : 'release-builds.yml'
855850 )
856851 end
857852
@@ -865,11 +860,11 @@ platform :ios do
865860 #
866861 #####################################################################################
867862 lane :trigger_release_build do |options |
868- circleci_trigger_job (
869- circle_ci_token : ENV [ 'CIRCLE_CI_AUTH_TOKEN' ] ,
870- repository : REPOSITORY_NAME ,
863+ buildkite_trigger_build (
864+ buildkite_organization : 'automattic' ,
865+ buildkite_pipeline : 'wordpress-ios' ,
871866 branch : options [ :branch_to_build ] ,
872- job_params : { 'release_build' => true }
867+ pipeline_file : 'release-builds.yml'
873868 )
874869 end
875870
0 commit comments