Skip to content

Commit

Permalink
Adds Gradle Wrapper Validation to release & beta builds in Buildkite
Browse files Browse the repository at this point in the history
  • Loading branch information
oguzkocer committed Nov 24, 2022
1 parent 55ab136 commit 3f049a1
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
13 changes: 12 additions & 1 deletion .buildkite/beta-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,20 @@
common_params:
# Common plugin settings to use with the `plugins` key.
- &common_plugins
- automattic/bash-cache#2.1.0
- automattic/bash-cache#2.11.0

steps:
#################
# Gradle Wrapper Validation
#################
- label: "Gradle Wrapper Validation"
command: |
validate_gradle_wrapper
plugins: *common_plugins

# Wait for Gradle Wrapper to be validated before running any other jobs
- wait

#################
# Lint
#################
Expand Down
13 changes: 12 additions & 1 deletion .buildkite/release-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,20 @@
common_params:
# Common plugin settings to use with the `plugins` key.
- &common_plugins
- automattic/bash-cache#2.1.0
- automattic/bash-cache#2.11.0

steps:
#################
# Gradle Wrapper Validation
#################
- label: "Gradle Wrapper Validation"
command: |
validate_gradle_wrapper
plugins: *common_plugins

# Wait for Gradle Wrapper to be validated before running any other jobs
- wait

#################
# Lint
#################
Expand Down

0 comments on commit 3f049a1

Please sign in to comment.