-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13553 from woocommerce/iangmaia/extract-translati…
…ons-from-finalize-release [Tooling] Extract download translations to separate process
- Loading branch information
Showing
2 changed files
with
57 additions
and
7 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
.buildkite/release-pipelines/download-release-translations.yml
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,23 @@ | ||
# yaml-language-server: $schema=https://raw.githubusercontent.com/buildkite/pipeline-schema/main/schema.json | ||
--- | ||
|
||
steps: | ||
- label: "Download Release Translations" | ||
plugins: [$CI_TOOLKIT] | ||
command: | | ||
echo '--- :robot_face: Use bot for git operations' | ||
source use-bot-for-git | ||
.buildkite/commands/checkout-release-branch.sh "$RELEASE_VERSION" | ||
echo '--- :ruby: Setup Ruby Tools' | ||
install_gems | ||
echo '--- :globe_with_meridians: Download Release Translations' | ||
bundle exec fastlane download_release_translations skip_confirm:true include_wear_app:"${INCLUDE_WEAR_APP:-false}" | ||
agents: | ||
queue: "tumblr-metal" | ||
retry: | ||
manual: | ||
# If those jobs fail, one should always prefer re-triggering a new build from ReleaseV2 rather than retrying the individual job from Buildkite | ||
allowed: false |
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