@@ -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
@@ -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