Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 0 additions & 38 deletions .buildkite/commands/checkout-release-branch.sh

This file was deleted.

2 changes: 1 addition & 1 deletion .buildkite/commands/complete-code-freeze.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fi
echo '--- :robot_face: Use bot for Git operations'
source use-bot-for-git

.buildkite/commands/checkout-release-branch.sh "$RELEASE_NUMBER"
checkout_release_branch "$RELEASE_NUMBER"

"$(dirname "${BASH_SOURCE[0]}")/shared-set-up.sh"

Expand Down
2 changes: 1 addition & 1 deletion .buildkite/commands/finalize-hotfix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fi
echo '--- :robot_face: Use bot for Git operations'
source use-bot-for-git

.buildkite/commands/checkout-release-branch.sh "$RELEASE_NUMBER"
checkout_release_branch "$RELEASE_NUMBER"

echo '--- :ruby: Setup Ruby tools'
install_gems
Expand Down
2 changes: 1 addition & 1 deletion .buildkite/commands/finalize-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fi
echo '--- :robot_face: Use bot for Git operations'
source use-bot-for-git

.buildkite/commands/checkout-release-branch.sh "$RELEASE_NUMBER"
checkout_release_branch "$RELEASE_NUMBER"

echo '--- :ruby: Setup Ruby tools'
install_gems
Expand Down
4 changes: 2 additions & 2 deletions .buildkite/release-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ steps:

- label: ":wordpress: :testflight: WordPress Release Build (App Store Connect)"
command: |
.buildkite/commands/checkout-release-branch.sh "$RELEASE_VERSION"
checkout_release_branch "$RELEASE_VERSION"
.buildkite/commands/release-build-wordpress.sh $IS_BETA_RELEASE
plugins: [$CI_TOOLKIT_PLUGIN]
notify:
Expand All @@ -21,7 +21,7 @@ steps:

- label: ":jetpack: :testflight: Jetpack Release Build (App Store Connect)"
command: |
.buildkite/commands/checkout-release-branch.sh "$RELEASE_VERSION"
checkout_release_branch "$RELEASE_VERSION"
.buildkite/commands/release-build-jetpack.sh
plugins: [$CI_TOOLKIT_PLUGIN]
notify:
Expand Down
2 changes: 1 addition & 1 deletion .buildkite/release-pipelines/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ steps:
echo '--- :robot_face: Use bot for Git operations'
source use-bot-for-git

.buildkite/commands/checkout-release-branch.sh "$RELEASE_VERSION"
checkout_release_branch "$RELEASE_VERSION"

echo '--- :ruby: Setup Ruby tools'
install_gems
Expand Down
2 changes: 1 addition & 1 deletion .buildkite/shared-pipeline-vars
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# The ~> modifier is not currently used, but we check for it just in case
XCODE_VERSION=$(sed -E 's/^~> ?//' .xcode-version)
CI_TOOLKIT_PLUGIN_VERSION="6.1.1"
CI_TOOLKIT_PLUGIN_VERSION="6.3.0"
TEST_COLLECTOR_PLUGIN_VERSION="1.11.0"

export IMAGE_ID="xcode-$XCODE_VERSION"
Expand Down