-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/release/19.2' into bug/aztec-hea…
…dings
- Loading branch information
Showing
83 changed files
with
3,201 additions
and
1,860 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash -eu | ||
|
||
# FIXIT-13.1: Temporary fix until we're on the Xcode 13.1 VM | ||
echo "--- :rubygems: Fixing Ruby Setup" | ||
gem install bundler | ||
|
||
echo "--- :arrow_down: Installing Release Dependencies" | ||
brew update # Update homebrew to temporarily fix a bintray issue | ||
brew install imagemagick | ||
brew install ghostscript | ||
|
||
echo "--- :rubygems: Setting up Gems" | ||
install_gems | ||
|
||
echo "--- :cocoapods: Setting up Pods" | ||
install_cocoapods | ||
|
||
echo "--- :closed_lock_with_key: Installing Secrets" | ||
bundle exec fastlane run configure_apply | ||
|
||
echo "--- :hammer_and_wrench: Building" | ||
bundle exec fastlane build_and_upload_jetpack_for_app_store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash -eu | ||
|
||
# FIXIT-13.1: Temporary fix until we're on the Xcode 13.1 VM | ||
echo "--- :rubygems: Fixing Ruby Setup" | ||
gem install bundler | ||
|
||
echo "--- :arrow_down: Installing Release Dependencies" | ||
brew update # Update homebrew to temporarily fix a bintray issue | ||
brew install imagemagick | ||
brew install ghostscript | ||
|
||
echo "--- :rubygems: Setting up Gems" | ||
install_gems | ||
|
||
echo "--- :cocoapods: Setting up Pods" | ||
install_cocoapods | ||
|
||
echo "--- :closed_lock_with_key: Installing Secrets" | ||
bundle exec fastlane run configure_apply | ||
|
||
echo "--- :hammer_and_wrench: Building" | ||
bundle exec fastlane build_and_upload_app_center skip_confirm:true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash -eu | ||
|
||
# FIXIT-13.1: Temporary fix until we're on the Xcode 13.1 VM | ||
echo "--- :rubygems: Fixing Ruby Setup" | ||
gem install bundler | ||
|
||
echo "--- :arrow_down: Installing Release Dependencies" | ||
brew update # Update homebrew to temporarily fix a bintray issue | ||
brew install imagemagick | ||
brew install ghostscript | ||
|
||
echo "--- :rubygems: Setting up Gems" | ||
install_gems | ||
|
||
echo "--- :cocoapods: Setting up Pods" | ||
install_cocoapods | ||
|
||
echo "--- :closed_lock_with_key: Installing Secrets" | ||
bundle exec fastlane run configure_apply | ||
|
||
echo "--- :hammer_and_wrench: Building" | ||
bundle exec fastlane build_and_upload_app_store_connect \ | ||
skip_confirm:true \ | ||
create_gh_release:true \ | ||
beta_release:${1:-true} # use first call param, default to true for safety |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# This pipeline is meant to be run via the Buildkite API, and is only used for release builds | ||
|
||
# Nodes with values to reuse in the pipeline. | ||
common_params: | ||
# Common plugin settings to use with the `plugins` key. | ||
- &common_plugins | ||
- automattic/bash-cache#v1.5.0 | ||
- automattic/git-s3-cache#v1.1.0: | ||
bucket: "a8c-repo-mirrors" | ||
repo: "wordpress-mobile/wordpress-ios/" | ||
# Common environment values to use with the `env` key. | ||
- &common_env | ||
IMAGE_ID: xcode-13 | ||
|
||
steps: | ||
|
||
- label: "🛠 WordPress Release Build (App Store Connect)" | ||
command: ".buildkite/commands/release-build-wordpress.sh $BETA_RELEASE" | ||
env: *common_env | ||
plugins: *common_plugins | ||
notify: | ||
- slack: "#build-and-ship" | ||
|
||
- label: "🛠 WordPress Release Build (App Center)" | ||
command: ".buildkite/commands/release-build-wordpress-internal.sh" | ||
env: *common_env | ||
plugins: *common_plugins | ||
notify: | ||
- slack: "#build-and-ship" | ||
|
||
- label: "🛠 Jetpack Release Build (App Store Connect)" | ||
command: ".buildkite/commands/release-build-jetpack.sh" | ||
env: *common_env | ||
plugins: *common_plugins | ||
notify: | ||
- slack: "#build-and-ship" |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.