Skip to content

Commit 206f52e

Browse files
authored
Merge pull request #17891 from wordpress-mobile/remove/circle-ci
Remove CircleCI
2 parents bcc922f + 98c2bd4 commit 206f52e

File tree

12 files changed

+31
-399
lines changed

12 files changed

+31
-399
lines changed

.buildkite/commands/release-build-jetpack.sh

100644100755
File mode changed.

.buildkite/commands/release-build-wordpress-internal.sh

100644100755
File mode changed.

.buildkite/commands/release-build-wordpress.sh

100644100755
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,7 @@ echo "--- :closed_lock_with_key: Installing Secrets"
1919
bundle exec fastlane run configure_apply
2020

2121
echo "--- :hammer_and_wrench: Building"
22-
bundle exec fastlane build_and_upload_app_store_connect skip_confirm:true create_gh_release:true
22+
bundle exec fastlane build_and_upload_app_store_connect \
23+
skip_confirm:true \
24+
create_gh_release:true \
25+
beta_release:${1:-true} # use first call param, default to true for safety

.buildkite/release-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ common_params:
1515
steps:
1616

1717
- label: "🛠 WordPress Release Build (App Store Connect)"
18-
command: ".buildkite/commands/release-build-wordpress.sh"
18+
command: ".buildkite/commands/release-build-wordpress.sh $BETA_RELEASE"
1919
env: *common_env
2020
plugins: *common_plugins
2121
notify:

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

Gemfile.lock

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ GEM
3333
aws-eventstream (~> 1, >= 1.0.2)
3434
babosa (1.0.4)
3535
bigdecimal (1.4.4)
36+
buildkit (1.4.5)
37+
sawyer (>= 0.6)
3638
chroma (0.2.0)
3739
claide (1.1.0)
3840
cocoapods (1.11.2)
@@ -161,9 +163,10 @@ GEM
161163
xcpretty-travis-formatter (>= 0.0.3)
162164
fastlane-plugin-appcenter (1.11.1)
163165
fastlane-plugin-sentry (1.11.0)
164-
fastlane-plugin-wpmreleasetoolkit (2.3.0)
166+
fastlane-plugin-wpmreleasetoolkit (3.0.0)
165167
activesupport (~> 5)
166168
bigdecimal (~> 1.4)
169+
buildkit (~> 1.4)
167170
chroma (= 0.2.0)
168171
diffy (~> 3.3)
169172
git (~> 1.3)
@@ -245,7 +248,7 @@ GEM
245248
nokogiri (1.12.5)
246249
mini_portile2 (~> 2.6.1)
247250
racc (~> 1.4)
248-
octokit (4.21.0)
251+
octokit (4.22.0)
249252
faraday (>= 0.9)
250253
sawyer (~> 0.8.0, >= 0.5.3)
251254
oj (3.13.10)
@@ -331,7 +334,7 @@ DEPENDENCIES
331334
fastlane (~> 2.174)
332335
fastlane-plugin-appcenter (~> 1.8)
333336
fastlane-plugin-sentry
334-
fastlane-plugin-wpmreleasetoolkit (~> 2.3)
337+
fastlane-plugin-wpmreleasetoolkit (~> 3.0)
335338
octokit (~> 4.0)
336339
rake
337340
rmagick (~> 3.2.0)

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

0 commit comments

Comments
 (0)