Skip to content
Merged
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
6 changes: 6 additions & 0 deletions .buildkite/beta-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ steps:
command: |
checkout_release_branch "$RELEASE_VERSION"
validate_gradle_wrapper
priority: 1
plugins: [$CI_TOOLKIT]

# Wait for Gradle Wrapper to be validated before running any other jobs
Expand All @@ -31,6 +32,7 @@ steps:
command: |
checkout_release_branch "$RELEASE_VERSION"
.buildkite/commands/lint.sh wordpress
priority: 1
plugins: [$CI_TOOLKIT]
artifact_paths:
- "**/build/reports/lint-results*.*"
Expand All @@ -40,6 +42,7 @@ steps:
command: |
checkout_release_branch "$RELEASE_VERSION"
.buildkite/commands/lint.sh jetpack
priority: 1
plugins: [$CI_TOOLKIT]
artifact_paths:
- "**/build/reports/lint-results*.*"
Expand All @@ -56,6 +59,7 @@ steps:
checkout_release_branch "$RELEASE_VERSION"
.buildkite/commands/beta-build.sh wordpress
depends_on: wplint
priority: 1
plugins: [$CI_TOOLKIT]
notify:
- slack: "#build-and-ship"
Expand All @@ -72,6 +76,7 @@ steps:
checkout_release_branch "$RELEASE_VERSION"
.buildkite/commands/beta-build.sh jetpack
depends_on: jplint
priority: 1
plugins: [$CI_TOOLKIT]
notify:
- slack: "#build-and-ship"
Expand All @@ -92,4 +97,5 @@ steps:
command: |
checkout_release_branch "$RELEASE_VERSION"
.buildkite/commands/create-github-release.sh
priority: 1
plugins: [$CI_TOOLKIT]
2 changes: 2 additions & 0 deletions .buildkite/code-freeze.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/buildkite/pipeline-schema/main/schema.json
---

priority: 1

@AliSoftware AliSoftware Sep 2, 2026

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually I don't think priority is a valid top-level attribute in Buildkite pipelines and instead only a job/step attribute. So this is probably not valid


steps:
- label: "Code Freeze"
plugins: [$CI_TOOLKIT]
Expand Down
2 changes: 2 additions & 0 deletions .buildkite/complete-code-freeze.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/buildkite/pipeline-schema/main/schema.json
---

priority: 1

steps:
- label: "Complete Code Freeze"
plugins: [$CI_TOOLKIT]
Expand Down
2 changes: 2 additions & 0 deletions .buildkite/finalize-hotfix-release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/buildkite/pipeline-schema/main/schema.json
---

priority: 1

steps:
- label: Finalize Hotfix
plugins: [$CI_TOOLKIT]
Expand Down
2 changes: 2 additions & 0 deletions .buildkite/finalize-release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/buildkite/pipeline-schema/main/schema.json
---

priority: 1

steps:
- label: "Finalize release"
plugins: [$CI_TOOLKIT]
Expand Down
2 changes: 2 additions & 0 deletions .buildkite/new-beta-release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/buildkite/pipeline-schema/main/schema.json
---

priority: 1

steps:
- label: "New Beta Release"
plugins: [$CI_TOOLKIT]
Expand Down
2 changes: 2 additions & 0 deletions .buildkite/new-hotfix-release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/buildkite/pipeline-schema/main/schema.json
---

priority: 1

steps:
- label: New Hotfix Release
plugins: [$CI_TOOLKIT]
Expand Down
2 changes: 2 additions & 0 deletions .buildkite/promote-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
agents:
queue: "android"

priority: 1

steps:
- label: ":android: Gather builds to promote to beta"
command: ".buildkite/commands/gather-beta-candidates.sh"
Expand Down
2 changes: 2 additions & 0 deletions .buildkite/promote-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
agents:
queue: "android"

priority: 1

steps:
- label: ":android: Gather build to release to production"
command: ".buildkite/commands/gather-production-candidate.sh"
Expand Down
2 changes: 2 additions & 0 deletions .buildkite/publish-release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# yaml-language-server: $schema=https://raw.githubusercontent.com/buildkite/pipeline-schema/main/schema.json
---

priority: 1

steps:
- label: Publish Release
plugins: [$CI_TOOLKIT]
Expand Down
2 changes: 2 additions & 0 deletions .buildkite/update-release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
---


priority: 1

steps:
- label: "Update release notes"
plugins: [$CI_TOOLKIT]
Expand Down
Loading