Skip to content

Commit dc36158

Browse files
committed
Update bash-cache Buildkite plugin to version 2.8.0
This version includes a fix that will remove the need for the `gem install bundler` workarounds.
1 parent 817576c commit dc36158

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

.buildkite/pipeline.yml

+1-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Nodes with values to reuse in the pipeline.
22
common_params:
33
plugins: &common_plugins
4-
- &bash_cache automattic/bash-cache#2.7.0: ~
4+
- &bash_cache automattic/bash-cache#2.8.0
55
# Common environment values to use with the `env` key.
66
env: &common_env
77
IMAGE_ID: xcode-13.4.1
@@ -14,9 +14,6 @@ steps:
1414
- label: "🧪 Build and Test"
1515
key: "test"
1616
command: |
17-
# See https://github.com/Automattic/bash-cache-buildkite-plugin/issues/16
18-
gem install bundler
19-
2017
build_and_test_pod
2118
env: *common_env
2219
plugins: *common_plugins
@@ -28,9 +25,6 @@ steps:
2825
- label: "🔬 Validate Podspec"
2926
key: "validate"
3027
command: |
31-
# See https://github.com/Automattic/bash-cache-buildkite-plugin/issues/16
32-
gem install bundler
33-
3428
validate_podspec
3529
env: *common_env
3630
plugins: *common_plugins
@@ -42,9 +36,6 @@ steps:
4236
- label: "🧹 Lint"
4337
key: "lint"
4438
command: |
45-
# See https://github.com/Automattic/bash-cache-buildkite-plugin/issues/16
46-
gem install bundler
47-
4839
lint_pod
4940
env: *common_env
5041
plugins: *common_plugins

.buildkite/publish-pod.sh

-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ PODSPEC_PATH="WPMediaPicker.podspec"
44
SLACK_WEBHOOK=$PODS_SLACK_WEBHOOK
55

66
echo "--- :rubygems: Setting up Gems"
7-
# See https://github.com/Automattic/bash-cache-buildkite-plugin/issues/16
8-
gem install bundler
9-
107
install_gems
118

129
echo "--- :cocoapods: Publishing Pod to CocoaPods CDN"

0 commit comments

Comments
 (0)